30 lines
953 B
TypeScript
30 lines
953 B
TypeScript
import { Test, TestingModule } from '@nestjs/testing';
|
|
import { DashboardModule } from './DashboardModule';
|
|
import { DashboardController } from './DashboardController';
|
|
import { DashboardService } from './DashboardService';
|
|
|
|
describe('DashboardModule', () => {
|
|
let module: TestingModule;
|
|
|
|
beforeEach(async () => {
|
|
module = await Test.createTestingModule({
|
|
imports: [DashboardModule],
|
|
}).compile();
|
|
});
|
|
|
|
it('should compile the module', () => {
|
|
expect(module).toBeDefined();
|
|
});
|
|
|
|
it('should provide DashboardController', () => {
|
|
const controller = module.get<DashboardController>(DashboardController);
|
|
expect(controller).toBeDefined();
|
|
expect(controller).toBeInstanceOf(DashboardController);
|
|
});
|
|
|
|
it('should provide DashboardService', () => {
|
|
const service = module.get<DashboardService>(DashboardService);
|
|
expect(service).toBeDefined();
|
|
expect(service).toBeInstanceOf(DashboardService);
|
|
});
|
|
}); |