Skip to content

Commit

Permalink
fix conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinigami92 committed Sep 20, 2023
1 parent 47a35f3 commit 4fa9a18
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions test/modules/datatype.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { describe, expect, it } from 'vitest';
import { faker, FakerError } from '../../src';
import { faker } from '../../src';
import { times } from '../support/times';
import { seededTests } from './../support/seededRuns';
import { times } from './../support/times';

const NON_SEEDED_BASED_RUN = 25;

Expand Down Expand Up @@ -84,8 +84,9 @@ describe('datatype', () => {
});
});

describe(`random seeded tests for seed ${faker.seed()}`, () => {
for (let i = 1; i <= NON_SEEDED_BASED_RUN; i++) {
describe.each(times(NON_SEEDED_BASED_RUN).map(() => faker.seed()))(
'random seeded tests for seed %i',
() => {
describe.each([
'bigint',
'boolean',
Expand Down

0 comments on commit 4fa9a18

Please sign in to comment.