test(integration): wrong class import on typeorm integration test

This commit is contained in:
Micael Levi L. Cavalcante
2023-04-05 09:13:26 -04:00
committed by GitHub
parent 0d8c618c76
commit 2e2ae090cd

View File

@@ -1,8 +1,8 @@
import { NestFactory } from '@nestjs/core';
import { ApplicationModule } from './app.module';
import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(ApplicationModule);
const app = await NestFactory.create(AppModule);
await app.listen(3001);
}
bootstrap();