aboutsummaryrefslogtreecommitdiff
path: root/test/support
AgeCommit message (Collapse)AuthorFilesLines
2025-04-10chore(deps): update eslint (#3458)renovate[bot]1-3/+1
Co-authored-by: Shinigami92 <[email protected]>
2024-11-02test: patch and filter seeded run stacktraces (#3229)ST-DDT1-4/+70
2024-09-26infra: update file structure for util/internal (#3141)DivisionByZero1-1/+1
2024-09-09chore: improve nullish-checks in tests (#3081)ST-DDT1-1/+5
2024-08-30chore(deps): update dependency typescript-eslint to v8 (#3064)renovate[bot]1-6/+3
* chore(deps): update dependency typescript-eslint to v8 * chore: fix lint errors * chore: simplify code * chore: remove eslint-plugin-deprecation --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: ST-DDT <[email protected]> Co-authored-by: Shinigami92 <[email protected]>
2024-06-23test: remove usage of vitest.todo (#2960)ST-DDT1-13/+0
2024-02-09chore(deps)!: update dependency typescript to v5 (#1953)renovate[bot]1-1/+1
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: ST-DDT <[email protected]>
2023-11-13chore(deps): update dependency prettier to v3.1.0 (#2541)renovate[bot]1-2/+2
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: ST-DDT <[email protected]>
2023-10-28infra(unicorn): filename-case (#2492)ST-DDT1-0/+0
2023-10-17infra(unicorn): prefer-spread (#2421)Shinigami1-1/+1
Co-authored-by: ST-DDT <[email protected]>
2023-09-23infra: lint all existing jsdocs (#2408)ST-DDT1-0/+1
2023-08-06chore(deps): update dependency prettier to v3 (#2260)Shinigami1-2/+2
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: ST-DDT <[email protected]>
2023-05-04chore: rename generics (#2046)Shinigami1-43/+40
2023-05-03test: prepare test sources for strict mode (#2107)Shinigami1-1/+1
2023-04-15test: rename type to singular (#2052)Shinigami1-4/+4
2023-03-07refactor!: remove dynamic locale switching support (#1735)ST-DDT1-1/+0
2023-02-15chore: activate noImplicitAny (#1839)Shinigami1-1/+1
2022-12-31chore: turn on padding-line-between-statements (#1691)Shinigami1-0/+3
2022-12-17test: fix duplicate test names (#1647)Shinigami1-0/+10
2022-07-22test: introduce seededTests factory (#838)ST-DDT1-0/+318
2022-06-18test: migrate datatype to test snapshots (#875)ST-DDT1-0/+1
2022-05-25fix: Luhn generation algorithms and tests (#980)Eric Cheng1-18/+0
Co-authored-by: ST-DDT <[email protected]>
2022-02-14test: rewrite internet (#475)Shinigami1-0/+9
2022-01-21chore(test): migrate to vitest (#235)Shinigami6-8140/+18
2022-01-18feat!: support tree-shaking (#152)Shinigami1-1/+1
2022-01-13chore: format tests (#67)Shinigami5-6293/+6766
2021-08-18spelling: overwritesJosh Soref1-2/+2
Signed-off-by: Josh Soref <[email protected]>
2021-08-18spelling: messageJosh Soref1-1/+1
Signed-off-by: Josh Soref <[email protected]>
2021-08-18spelling: everythingJosh Soref1-1/+1
Signed-off-by: Josh Soref <[email protected]>
2021-08-18spelling: dependenciesJosh Soref1-2/+2
Signed-off-by: Josh Soref <[email protected]>
2021-08-18spelling: assertionJosh Soref1-1/+1
Signed-off-by: Josh Soref <[email protected]>
2021-03-24Give each faker instance its own random number generatorCharles Lowell1-1/+1
Currently, every Faker instance shares the same random number generator instance which means that to seed one faker instance is to seed them all. This can result in duplicate data being generated all over the place. This just extracts the public API of the mersenne twister found in `vendor/mersenne.js` and creates a single instance of it per faker. This implementation is a tad sub-optimal since calling `seed()` on a faker instance will result in two redundant calls to `mersenne.init_genrand()`: one in `random.js` and the other in `datatype.js`. It would probably be more DRY to create the mersenne instance once in faker and then pass it into to the `Random` and `Datatype` instances, however, this takes the strategy of the smallest possible API change.
2018-10-27[test] Add `faker.fake` functional tests #386Marak1-0/+50
- Now running all methods through faker.fake - Adds coverage for scope issues #376 - Refactors functional test methods to helper
2016-06-13add tests for credit card functions and helpersJakub Mandula1-0/+18
2013-01-07allowing all tests to run in browserBryan Donovan1-0/+4153
2013-01-07adding real browser testsBryan Donovan1-0/+3403
2013-01-05adding mocha test runnerBryan Donovan1-0/+43