| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2022-01-25 | test: rewrite commerce tests (#294) | Shinigami | 1 | -149/+204 | |
| 2022-01-25 | test: improve animal tests (#293) | Shinigami | 1 | -5/+110 | |
| 2022-01-25 | test: add test for locale imports (#297) | Shinigami | 1 | -0/+13 | |
| 2022-01-25 | docs: readme cleanup (#251) | Caleb Burton | 1 | -0/+14 | |
| 2022-01-24 | build: bundle with esbuild (#257) | Shinigami | 26 | -33/+35 | |
| 2022-01-24 | test: fix suppressed warnings (#271) | ST-DDT | 1 | -6/+4 | |
| 2022-01-23 | chore(test): Add locale to test description (#262) | ST-DDT | 1 | -36/+40 | |
| 2022-01-21 | chore(test): migrate to vitest (#235) | Shinigami | 59 | -12468/+4550 | |
| 2022-01-18 | ci: add node version matrix (#179) | Mohd Imran | 1 | -15/+18 | |
| Co-authored-by: Shinigami92 <[email protected]> | |||||
| 2022-01-18 | feat!: support tree-shaking (#152) | Shinigami | 27 | -30/+30 | |
| 2022-01-14 | feat: migrate finance (#131) | Shinigami | 2 | -6/+6 | |
| 2022-01-14 | feat: migrate random (#91) | Shinigami | 1 | -1/+1 | |
| 2022-01-13 | chore: format tests (#67) | Shinigami | 32 | -7683/+8598 | |
| 2022-01-12 | fix(#28): changed fakercloud url to cloudflare-ipfs.com (#95) | Daniel Bannert | 1 | -114/+205 | |
| 2022-01-09 | fix(tests): fix failing tests (#12) | Mateus Dadalto | 2 | -2/+2 | |
| Co-authored-by: Shinigami <[email protected]> | |||||
| 2021-10-19 | Merge pull request #1217 from jsoref/spelling6.0.0-alpha.0 | Marak | 5 | -14/+14 | |
| Spelling | |||||
| 2021-10-18 | Merge pull request #1177 from hsw107/master | Marak | 1 | -0/+48 | |
| feat: add uniqueArray helper function | |||||
| 2021-09-11 | rebuild bigInt generator pull request | Edwin Samodra | 1 | -0/+23 | |
| 2021-08-18 | spelling: stubbed | Josh Soref | 1 | -1/+1 | |
| Signed-off-by: Josh Soref <[email protected]> | |||||
| 2021-08-18 | spelling: separators | Josh Soref | 1 | -4/+4 | |
| Signed-off-by: Josh Soref <[email protected]> | |||||
| 2021-08-18 | spelling: preceding | Josh Soref | 1 | -1/+1 | |
| Signed-off-by: Josh Soref <[email protected]> | |||||
| 2021-08-18 | spelling: overwrites | Josh Soref | 1 | -2/+2 | |
| Signed-off-by: Josh Soref <[email protected]> | |||||
| 2021-08-18 | spelling: message | Josh Soref | 1 | -1/+1 | |
| Signed-off-by: Josh Soref <[email protected]> | |||||
| 2021-08-18 | spelling: maximum | Josh Soref | 1 | -1/+1 | |
| Signed-off-by: Josh Soref <[email protected]> | |||||
| 2021-08-18 | spelling: everything | Josh Soref | 1 | -1/+1 | |
| Signed-off-by: Josh Soref <[email protected]> | |||||
| 2021-08-18 | spelling: dependencies | Josh Soref | 1 | -2/+2 | |
| Signed-off-by: Josh Soref <[email protected]> | |||||
| 2021-08-18 | spelling: assertion | Josh Soref | 1 | -1/+1 | |
| Signed-off-by: Josh Soref <[email protected]> | |||||
| 2021-06-05 | change domainWord generation algorithm to <adjective>-<noun> | Andrii Kostenko | 1 | -7/+11 | |
| 2021-05-28 | feat: add uniqueArray helper function | Hanna Walter | 1 | -0/+48 | |
| 2021-05-25 | Remove .only call from test suite | Marak | 1 | -1/+1 | |
| 2021-05-19 | Updated comments to include JSDoc fields | Adam Walker | 1 | -2/+2 | |
| 2021-05-19 | Removed seed call from unit tests | Adam Walker | 1 | -1/+0 | |
| 2021-05-19 | Revert formatting changes to lib/index.js made by prettier | Adam Walker | 1 | -2/+2 | |
| 2021-05-19 | Add remaining methods and libs from feature request. | Adam Walker | 1 | -10/+27 | |
| 2021-05-19 | Initial commit of word.noun and word.verb | Adam Walker | 1 | -0/+20 | |
| 2021-03-25 | 👍🏼Remove old public API from vendor/mersenne.js | Charles Lowell | 1 | -1/+1 | |
| 2021-03-24 | Give each faker instance its own random number generator | Charles Lowell | 1 | -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. | |||||
| 2021-03-22 | Linting fixes for `./test` | Marak | 24 | -2307/+2307 | |
| 2021-03-07 | fix bicycleType to bicycle | Jason Hong | 1 | -5/+5 | |
| 2021-03-07 | add bicycleType in the vehicle module | Jason Hong | 1 | -0/+10 | |
| 2021-03-03 | Fix deprecation warning tests | Marak | 1 | -5/+5 | |
| 2021-03-03 | Updates deprecation message | Marak | 1 | -5/+5 | |
| Fixes typo is jsdoc | |||||
| 2021-03-03 | Issue 1114: new datatypes module | lbuerste | 1 | -7/+2 | |
| - fix test naming - remove not asserting test | |||||
| 2021-03-03 | Issue 1114: new datatypes module | lbuerste | 1 | -19/+20 | |
| Current status: - changed datetime test that checks seeding to not assert something because it does not work - changed some asserts to strictEqual instead of using .ok(a===b) - renamed datatype.date to datatype.datetime | |||||
| 2021-03-03 | Issue 1114: new datatypes module | lbuerste | 2 | -96/+137 | |
| Current status: - implemented array method and respective tests - added a few semicolons - changed test with seeding of datatype.date to only check date, not time - added test for generating json with set seed | |||||
| 2021-03-03 | Issue 1114: New datatype module | LBuerstmayr | 1 | -4/+44 | |
| Current status: - adding methods for string, json and respective tests | |||||
| 2021-03-03 | Issue 1114: new datatypes module | lbuerste | 4 | -38/+61 | |
| Current status: - moved tests with seeding problem back to random.unit - implemented date method - added datatype module to seed funtion - added tests for date method | |||||
| 2021-03-03 | Issue 1114: New datatype module | LBuerstmayr | 8 | -242/+313 | |
| Current status: - moved number(), float(), hexaDecimal(), boolean(), uuid() from random to datatype - moved respective test from random.unit to datatype.unit - tests of moved methods in random now check if DeprecationWarning is printed and respective method in datatype module is called - adapted all lib files that use moved methods (mostly number) - adapted tests of respective files to spy on the correct method - adapted README in order to promote usage of method that logs a DeprecationWarning | |||||
| 2021-02-28 | test: 💍 Finance transactionDescription method | Ognjen Jevremovic | 1 | -6/+15 | |
| Extend the tests for the `finance.transactionDescription` method call. Create a spy for the `createTransaction` method on the helpers object and assert that the method is called only once from within `finance.transactionDescription`. ✅ Closes: #1108 | |||||
| 2021-02-24 | Merge pull request #1112 from Moosh-be/issue_945_Bis | Marak | 1 | -0/+167 | |
| Fix for issues 846, 944, 945, 946 With TDD | |||||
