typical-data
typical-data copied to clipboard
Test data factory written in TypeScript
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 {...
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...
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: 