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

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