We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b037d3c + 29fb260 commit 3438194Copy full SHA for 3438194
content/fundamentals/unit-testing.md
@@ -94,8 +94,8 @@ describe('CatsController', () => {
94
providers: [CatsService],
95
}).compile();
96
97
- catsService = moduleRef.get<CatsService>(CatsService);
98
- catsController = moduleRef.get<CatsController>(CatsController);
+ catsService = moduleRef.get(CatsService);
+ catsController = moduleRef.get(CatsController);
99
});
100
101
describe('findAll', () => {
0 commit comments