251120:1700 Backend T3.4
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import { Test, TestingModule } from '@nestjs/testing';
|
||||
import { JsonSchemaController } from './json-schema.controller';
|
||||
|
||||
describe('JsonSchemaController', () => {
|
||||
let controller: JsonSchemaController;
|
||||
|
||||
beforeEach(async () => {
|
||||
const module: TestingModule = await Test.createTestingModule({
|
||||
controllers: [JsonSchemaController],
|
||||
}).compile();
|
||||
|
||||
controller = module.get<JsonSchemaController>(JsonSchemaController);
|
||||
});
|
||||
|
||||
it('should be defined', () => {
|
||||
expect(controller).toBeDefined();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user