├── .github └── workflows │ └── test.yaml ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── prisma ├── factories.ts ├── index.ts ├── migrations │ ├── 20230512232905_ │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── src └── index.ts ├── tests ├── fields.test.ts ├── instance.test.ts ├── setup-tests.ts └── vitest.config.ts └── tsconfig.json /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedaljawahiry/factory-prisma/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedaljawahiry/factory-prisma/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedaljawahiry/factory-prisma/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedaljawahiry/factory-prisma/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedaljawahiry/factory-prisma/HEAD/package.json -------------------------------------------------------------------------------- /prisma/factories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedaljawahiry/factory-prisma/HEAD/prisma/factories.ts -------------------------------------------------------------------------------- /prisma/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedaljawahiry/factory-prisma/HEAD/prisma/index.ts -------------------------------------------------------------------------------- /prisma/migrations/20230512232905_/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedaljawahiry/factory-prisma/HEAD/prisma/migrations/20230512232905_/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedaljawahiry/factory-prisma/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedaljawahiry/factory-prisma/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedaljawahiry/factory-prisma/HEAD/src/index.ts -------------------------------------------------------------------------------- /tests/fields.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedaljawahiry/factory-prisma/HEAD/tests/fields.test.ts -------------------------------------------------------------------------------- /tests/instance.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedaljawahiry/factory-prisma/HEAD/tests/instance.test.ts -------------------------------------------------------------------------------- /tests/setup-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedaljawahiry/factory-prisma/HEAD/tests/setup-tests.ts -------------------------------------------------------------------------------- /tests/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedaljawahiry/factory-prisma/HEAD/tests/vitest.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedaljawahiry/factory-prisma/HEAD/tsconfig.json --------------------------------------------------------------------------------