├── .gitignore ├── .prettierrc ├── README.md ├── nest-cli.json ├── ormconfig.js ├── package.json ├── src ├── app.controller.spec.ts ├── app.controller.ts ├── app.module.ts ├── app.service.ts ├── main.ts └── user │ ├── user.controller.ts │ ├── user.e2e-spec.ts │ ├── user.entity.ts │ ├── user.module.ts │ └── user.service.ts ├── test ├── app.e2e-spec.ts └── jest-e2e.json ├── tsconfig.build.json ├── tsconfig.json ├── tslint.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-salmon/nestjs-typeorm-integration-tests/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-salmon/nestjs-typeorm-integration-tests/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-salmon/nestjs-typeorm-integration-tests/HEAD/README.md -------------------------------------------------------------------------------- /nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-salmon/nestjs-typeorm-integration-tests/HEAD/nest-cli.json -------------------------------------------------------------------------------- /ormconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-salmon/nestjs-typeorm-integration-tests/HEAD/ormconfig.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-salmon/nestjs-typeorm-integration-tests/HEAD/package.json -------------------------------------------------------------------------------- /src/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-salmon/nestjs-typeorm-integration-tests/HEAD/src/app.controller.spec.ts -------------------------------------------------------------------------------- /src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-salmon/nestjs-typeorm-integration-tests/HEAD/src/app.controller.ts -------------------------------------------------------------------------------- /src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-salmon/nestjs-typeorm-integration-tests/HEAD/src/app.module.ts -------------------------------------------------------------------------------- /src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-salmon/nestjs-typeorm-integration-tests/HEAD/src/app.service.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-salmon/nestjs-typeorm-integration-tests/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/user/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-salmon/nestjs-typeorm-integration-tests/HEAD/src/user/user.controller.ts -------------------------------------------------------------------------------- /src/user/user.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-salmon/nestjs-typeorm-integration-tests/HEAD/src/user/user.e2e-spec.ts -------------------------------------------------------------------------------- /src/user/user.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-salmon/nestjs-typeorm-integration-tests/HEAD/src/user/user.entity.ts -------------------------------------------------------------------------------- /src/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-salmon/nestjs-typeorm-integration-tests/HEAD/src/user/user.module.ts -------------------------------------------------------------------------------- /src/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-salmon/nestjs-typeorm-integration-tests/HEAD/src/user/user.service.ts -------------------------------------------------------------------------------- /test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-salmon/nestjs-typeorm-integration-tests/HEAD/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-salmon/nestjs-typeorm-integration-tests/HEAD/test/jest-e2e.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-salmon/nestjs-typeorm-integration-tests/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-salmon/nestjs-typeorm-integration-tests/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-salmon/nestjs-typeorm-integration-tests/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-salmon/nestjs-typeorm-integration-tests/HEAD/yarn.lock --------------------------------------------------------------------------------