Skip to content

Commit

Permalink
chore(system): fix grammar in test descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
xDivisionByZerox committed Jun 24, 2022
1 parent d2d1fe5 commit e71f3d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/system.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,15 +189,15 @@ 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,
});

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,
});
Expand All @@ -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,
Expand Down

0 comments on commit e71f3d6

Please sign in to comment.