mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 17:05:43 +03:00
This will hopefully make it easier to reproduce test failures that happen intermittently, especially in CI.
21 lines
654 B
JavaScript
21 lines
654 B
JavaScript
import faker from 'faker';
|
|
import config from 'nomad-ui/config/environment';
|
|
|
|
const searchIncludesSeed = window.location.search.includes('faker-seed');
|
|
|
|
if (config.environment !== 'test' || searchIncludesSeed) {
|
|
if (searchIncludesSeed) {
|
|
const params = new URLSearchParams(window.location.search);
|
|
const seed = parseInt(params.get('faker-seed'));
|
|
faker.seed(seed);
|
|
} else {
|
|
faker.seed(1);
|
|
}
|
|
} else if (config.environment === 'test') {
|
|
const randomSeed = faker.random.number();
|
|
console.log(`No seed specified with faker-seed query parameter, seeding Faker with ${randomSeed}`);
|
|
faker.seed(randomSeed);
|
|
}
|
|
|
|
export default faker;
|