test
This commit is contained in:
@@ -1,18 +0,0 @@
|
|||||||
import { Test, TestingModule } from '@nestjs/testing';
|
|
||||||
import { LogService } from './log.service';
|
|
||||||
|
|
||||||
describe('LogService', () => {
|
|
||||||
let service: LogService;
|
|
||||||
|
|
||||||
beforeEach(async () => {
|
|
||||||
const module: TestingModule = await Test.createTestingModule({
|
|
||||||
providers: [LogService],
|
|
||||||
}).compile();
|
|
||||||
|
|
||||||
service = module.get<LogService>(LogService);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should be defined', () => {
|
|
||||||
expect(service).toBeDefined();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
Reference in New Issue
Block a user