From e88f7411a6d0a11025c49103b851c3f117992b3d Mon Sep 17 00:00:00 2001 From: mshanemc Date: Fri, 21 Jun 2024 09:29:26 -0500 Subject: [PATCH] test: ut names --- test/unit/projectTest.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/projectTest.ts b/test/unit/projectTest.ts index b8004c7af..7f4e31d02 100644 --- a/test/unit/projectTest.ts +++ b/test/unit/projectTest.ts @@ -45,13 +45,13 @@ describe('SfProject', () => { }); describe('plugins', () => { const pluginsContent = { SomePlugin: 'value', SomeOtherPlugin: { NestedCap: true } }; - it('allows uppercase packaging aliases on write', async () => { + it('allows uppercase keys in plugins on write', async () => { const json = await SfProjectJson.create(); json.set('plugins', pluginsContent); await json.write(); expect($$.getConfigStubContents('SfProjectJson').plugins).to.deep.equal(pluginsContent); }); - it('allows uppercase packaging aliases on read', async () => { + it('allows uppercase keys in plugins on read', async () => { $$.setConfigStubContents('SfProjectJson', { contents: { plugins: pluginsContent } }); const json = await SfProjectJson.create(); expect(json.get('plugins')).to.deep.equal(pluginsContent);