We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56cb090 commit e05e0d9Copy full SHA for e05e0d9
apps/nest/src/app.controller.spec.ts
@@ -1,12 +1,14 @@
1
import { Test, TestingModule } from '@nestjs/testing';
2
import { AppController } from './app.controller';
3
import { AppService } from './app.service';
4
+import { NestUtilsModule } from '@spuxx/nest-utils';
5
6
describe('AppController', () => {
7
let controller: AppController;
8
9
beforeEach(async () => {
10
const app: TestingModule = await Test.createTestingModule({
11
+ imports: [NestUtilsModule],
12
controllers: [AppController],
13
providers: [AppService],
14
}).compile();
0 commit comments