Adjust tests to new Session and Author entities

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2021-05-17 22:28:35 +02:00
parent 3d07c5e443
commit f6d430c23f
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3
15 changed files with 91 additions and 1 deletions

View file

@ -6,6 +6,7 @@
import { forwardRef, Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { AuthorsModule } from '../authors/authors.module';
import { LoggerModule } from '../logger/logger.module';
import { NotesModule } from '../notes/notes.module';
import { Authorship } from './authorship.entity';
@ -19,6 +20,7 @@ import { ConfigModule } from '@nestjs/config';
forwardRef(() => NotesModule),
LoggerModule,
ConfigModule,
AuthorsModule,
],
providers: [RevisionsService],
exports: [RevisionsService],