diff options
| author | renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> | 2024-02-09 17:55:17 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-02-09 17:55:17 +0100 |
| commit | bc3ebb793666c0d7e58cf428ba12465a7b290cbe (patch) | |
| tree | 268d0ace82b56aada6fc320dbf99216ca9f0d7c6 /test/modules | |
| parent | aa183ad7cfe6346248801c280d89f9fad7c3cfee (diff) | |
| download | faker-bc3ebb793666c0d7e58cf428ba12465a7b290cbe.tar.xz faker-bc3ebb793666c0d7e58cf428ba12465a7b290cbe.zip | |
chore(deps)!: update dependency typescript to v5 (#1953)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: ST-DDT <[email protected]>
Diffstat (limited to 'test/modules')
| -rw-r--r-- | test/modules/datatype.spec.ts | 2 | ||||
| -rw-r--r-- | test/modules/date.spec.ts | 2 | ||||
| -rw-r--r-- | test/modules/helpers-eval.spec.ts | 2 | ||||
| -rw-r--r-- | test/modules/helpers.spec.ts | 2 | ||||
| -rw-r--r-- | test/modules/location.spec.ts | 2 | ||||
| -rw-r--r-- | test/modules/number.spec.ts | 2 | ||||
| -rw-r--r-- | test/modules/person.spec.ts | 2 | ||||
| -rw-r--r-- | test/modules/random.spec.ts | 2 | ||||
| -rw-r--r-- | test/modules/string.spec.ts | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/test/modules/datatype.spec.ts b/test/modules/datatype.spec.ts index 7a75ce58..ca6c3328 100644 --- a/test/modules/datatype.spec.ts +++ b/test/modules/datatype.spec.ts @@ -1,5 +1,5 @@ import { describe, expect, it } from 'vitest'; -import { faker, FakerError } from '../../src'; +import { FakerError, faker } from '../../src'; import { seededTests } from '../support/seeded-runs'; import { times } from './../support/times'; diff --git a/test/modules/date.spec.ts b/test/modules/date.spec.ts index bbd8020d..7cff8d33 100644 --- a/test/modules/date.spec.ts +++ b/test/modules/date.spec.ts @@ -1,5 +1,5 @@ import { afterEach, describe, expect, it } from 'vitest'; -import { faker, fakerAZ, FakerError } from '../../src'; +import { FakerError, faker, fakerAZ } from '../../src'; import { seededTests } from '../support/seeded-runs'; import { times } from './../support/times'; diff --git a/test/modules/helpers-eval.spec.ts b/test/modules/helpers-eval.spec.ts index 40612c37..e6995464 100644 --- a/test/modules/helpers-eval.spec.ts +++ b/test/modules/helpers-eval.spec.ts @@ -1,5 +1,5 @@ import { describe, expect, it, vi } from 'vitest'; -import { faker, FakerError } from '../../src'; +import { FakerError, faker } from '../../src'; import { fakeEval } from '../../src/modules/helpers/eval'; describe('fakeEval()', () => { diff --git a/test/modules/helpers.spec.ts b/test/modules/helpers.spec.ts index 1b9ba3ae..50bacda3 100644 --- a/test/modules/helpers.spec.ts +++ b/test/modules/helpers.spec.ts @@ -1,5 +1,5 @@ import { describe, expect, it } from 'vitest'; -import { faker, FakerError } from '../../src'; +import { FakerError, faker } from '../../src'; import { luhnCheck } from '../../src/modules/helpers/luhn-check'; import type { RecordKey } from '../../src/modules/helpers/unique'; import { seededTests } from '../support/seeded-runs'; diff --git a/test/modules/location.spec.ts b/test/modules/location.spec.ts index cb020418..682e3441 100644 --- a/test/modules/location.spec.ts +++ b/test/modules/location.spec.ts @@ -1,5 +1,5 @@ import { describe, expect, it } from 'vitest'; -import { faker, fakerEN_CA, fakerEN_US, FakerError } from '../../src'; +import { FakerError, faker, fakerEN_CA, fakerEN_US } from '../../src'; import { seededTests } from '../support/seeded-runs'; import { times } from './../support/times'; diff --git a/test/modules/number.spec.ts b/test/modules/number.spec.ts index 922819c0..43d0bc99 100644 --- a/test/modules/number.spec.ts +++ b/test/modules/number.spec.ts @@ -1,6 +1,6 @@ import validator from 'validator'; import { describe, expect, it } from 'vitest'; -import { faker, FakerError, SimpleFaker } from '../../src'; +import { FakerError, SimpleFaker, faker } from '../../src'; import { MERSENNE_MAX_VALUE } from '../internal/mersenne-test-utils'; import { seededTests } from '../support/seeded-runs'; import { times } from './../support/times'; diff --git a/test/modules/person.spec.ts b/test/modules/person.spec.ts index 14bedf1d..1af3dfb8 100644 --- a/test/modules/person.spec.ts +++ b/test/modules/person.spec.ts @@ -1,5 +1,5 @@ import { describe, expect, it } from 'vitest'; -import { faker, fakerAZ, fakerMK, fakerUK, Sex } from '../../src'; +import { Sex, faker, fakerAZ, fakerMK, fakerUK } from '../../src'; import { seededTests } from '../support/seeded-runs'; import { times } from './../support/times'; diff --git a/test/modules/random.spec.ts b/test/modules/random.spec.ts index f6fe2234..94de137e 100644 --- a/test/modules/random.spec.ts +++ b/test/modules/random.spec.ts @@ -1,5 +1,5 @@ import { describe, expect, it } from 'vitest'; -import { Faker, faker, FakerError, fakerZH_CN } from '../../src'; +import { Faker, FakerError, faker, fakerZH_CN } from '../../src'; import { seededTests } from '../support/seeded-runs'; import { times } from './../support/times'; diff --git a/test/modules/string.spec.ts b/test/modules/string.spec.ts index e82fa93f..22fa8aeb 100644 --- a/test/modules/string.spec.ts +++ b/test/modules/string.spec.ts @@ -1,5 +1,5 @@ import { describe, expect, it } from 'vitest'; -import { faker, FakerError } from '../../src'; +import { FakerError, faker } from '../../src'; import { seededTests } from '../support/seeded-runs'; import { times } from './../support/times'; |
