多维表格
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.
 
 
 
 
 
 

19 lines
492 B

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