typical-data icon indicating copy to clipboard operation
typical-data copied to clipboard

Test data factory written in TypeScript

Results 8 typical-data issues
Sort by recently updated
recently updated
newest added

Need to figure out an API for handling associations between entity types. Some options: ```typescript interface User { id: number; name: string; posts: Array tenantId: number; } interface Post {...

enhancement

Currently the entity store is just a JavaScript array that's monkey-patched with `create` and `createList` methods. It'd be better if the entity store had database-like querying methods to simplify finding...

enhancement

Right now global afterBuild hooks are ran after trait afterBuild hooks. When combined with extended factories, this may lead to unintuitive execution order of hooks. Running global hooks after results...

The params argument in trait attribute builder has Partial applied to it twice: ![CleanShot 2021-07-27 at 16 07 06](https://user-images.githubusercontent.com/17437698/127238741-9eedc1f0-6d4d-41f8-afe9-863a3a29a280.png)

good first issue