Skip to content

Commit e05e0d9

Browse files
committed
test: Fixed test
1 parent 56cb090 commit e05e0d9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

apps/nest/src/app.controller.spec.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
import { Test, TestingModule } from '@nestjs/testing';
22
import { AppController } from './app.controller';
33
import { AppService } from './app.service';
4+
import { NestUtilsModule } from '@spuxx/nest-utils';
45

56
describe('AppController', () => {
67
let controller: AppController;
78

89
beforeEach(async () => {
910
const app: TestingModule = await Test.createTestingModule({
11+
imports: [NestUtilsModule],
1012
controllers: [AppController],
1113
providers: [AppService],
1214
}).compile();

0 commit comments

Comments
 (0)