Fix user e2e tests (#194)

* WIP fix user e2e tests

The e2e tests still don't seem to work due to migrations not running.

Changes:
- update user.e2e tests to use new `userService.createUser` method
- fix server `typeorm` command to use ORM config
- update make test-e2e to re-create database volume every time
- add User DTO
- update auth.service and user.service to use User DTO
- update CreateUserDto making optional properties that are optional

* Fix migrations
- add missing `.ts` extension to migrations path
- update user e2e test for the new returned User resource
This commit is contained in:
Jaime Baez 2022-06-06 18:16:03 +02:00 committed by GitHub
parent 5b036067ed
commit b359dc3cb6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 114 additions and 76 deletions

View file

@ -9,9 +9,11 @@ export const databaseConfig: TypeOrmModuleOptions = {
database: process.env.DB_DATABASE_NAME,
entities: [__dirname + '/../**/*.entity.{js,ts}'],
synchronize: false,
migrations: [__dirname + '/../migration/*.js'],
migrations: [__dirname + '/../migration/*.{js,ts}'],
cli: {
migrationsDir: __dirname + '/../migration',
},
migrationsRun: true,
};
export default databaseConfig;