From e71f3d60536b80f353bec9e5b5c0d68537e040ac Mon Sep 17 00:00:00 2001 From: xDivisionByZerox Date: Fri, 24 Jun 2022 11:38:08 +0200 Subject: [PATCH] chore(system): fix grammar in test descriptions --- test/system.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/system.spec.ts b/test/system.spec.ts index cbde00fd72f..55cf5ce7157 100644 --- a/test/system.spec.ts +++ b/test/system.spec.ts @@ -189,7 +189,7 @@ describe('system', () => { expect(parts).length(2); }); - it('should return filenames without a extension when extensionCount is 0', () => { + it('should return filenames without an extension when extensionCount is 0', () => { const fileName = faker.system.fileName({ extensionCount: 0, }); @@ -197,7 +197,7 @@ describe('system', () => { expect(fileName).not.toContain('.'); }); - it('should return filenames without a extension when extensionCount is negative', () => { + it('should return filenames without an extension when extensionCount is negative', () => { const fileName = faker.system.fileName({ extensionCount: -1, }); @@ -206,7 +206,7 @@ describe('system', () => { }); it.each(times(10))( - 'should return filenames with a %s extensions', + 'should return filenames with %s extensions', (extCount) => { const fileName = faker.system.fileName({ extensionCount: extCount,