mirror of https://github.com/nocodb/nocodb
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.
20 lines
513 B
20 lines
513 B
2 years ago
|
import { Test } from '@nestjs/testing';
|
||
2 years ago
|
import { ProjectsService } from './projects.service';
|
||
2 years ago
|
import type { TestingModule } from '@nestjs/testing';
|
||
2 years ago
|
|
||
|
describe('ProjectsService', () => {
|
||
|
let service: ProjectsService;
|
||
|
|
||
|
beforeEach(async () => {
|
||
|
const module: TestingModule = await Test.createTestingModule({
|
||
|
providers: [ProjectsService],
|
||
|
}).compile();
|
||
|
|
||
|
service = module.get<ProjectsService>(ProjectsService);
|
||
|
});
|
||
|
|
||
|
it('should be defined', () => {
|
||
|
expect(service).toBeDefined();
|
||
|
});
|
||
|
});
|