You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 lines
499 B

import { Test, TestingModule } from '@nestjs/testing';
import { SeasonsController } from './seasons.controller';
describe('SeasonsController', () => {
let controller: SeasonsController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [SeasonsController],
}).compile();
controller = module.get<SeasonsController>(SeasonsController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});