Spaces:
Runtime error
Runtime error
File size: 485 Bytes
97dab2a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | import { Test, TestingModule } from '@nestjs/testing';
import { AzureController } from './azure.controller';
describe('AzureController', () => {
let controller: AzureController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [AzureController],
}).compile();
controller = module.get<AzureController>(AzureController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});
|