This commit is contained in:
Bastian Wagner
2025-01-20 13:18:56 +01:00
parent add2fd0240
commit a4084a2d00

View File

@@ -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();
});
});