1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
import { describe, expect, it } from 'vitest';
import { faker } from '../src';
import { seededTests } from './support/seededRuns';
const NON_SEEDED_BASED_RUN = 5;
const functionNames = [
'bear',
'bird',
'cat',
'cetacean',
'cow',
'crocodilia',
'dog',
'fish',
'horse',
'insect',
'lion',
'rabbit',
'rodent',
'snake',
'type',
] as const;
describe('animal', () => {
seededTests(faker, 'animal', (t) => {
t.itEach(...functionNames);
});
describe(`random seeded tests for seed ${faker.seed()}`, () => {
for (let i = 1; i <= NON_SEEDED_BASED_RUN; i++) {
for (const functionName of functionNames) {
describe(`${functionName}()`, () => {
it(`should return random value from ${functionName} array`, () => {
const actual = faker.animal[functionName]();
expect(faker.definitions.animal[functionName]).toContain(actual);
});
});
}
}
});
});
|