Skip to content

Commit

Permalink
add missing digits
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinigami92 committed Jan 27, 2023
1 parent d1cb087 commit a7eb7d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/system.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ describe('system', () => {
);

it('should return non-standard cron expressions', () => {
const validResults = ['0', '1', '2', '3', '4', '5', '6', '*', '@'];
const validResults = [...'0123456789'.split(''), '*', '@'];
expect(
faker.system.cron({ includeNonStandard: true })[0],
'generated cron, string should contain non-standard cron labels'
Expand Down

0 comments on commit a7eb7d0

Please sign in to comment.