factorify icon indicating copy to clipboard operation
factorify copied to clipboard

🏭 Framework-agnostic model factory system for clean testing

Results 1 factorify issues
Sort by recently updated
recently updated
newest added

Here is my example factory code ``` import { defineFactory } from '@julr/factorify'; interface Member { createId:string username:string password:string name:string refreshToken:string id:string type:string loginType:string nickname:string mobileNumber:string email:string birthYear:string birthday:string isAutoLogin:boolean...