13 lines
330 B
TypeScript
13 lines
330 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { LogService } from './log.service';
|
|
|
|
describe('LogService', () => {
|
|
beforeEach(() => TestBed.configureTestingModule({}));
|
|
|
|
it('should be created', () => {
|
|
const service: LogService = TestBed.get(LogService);
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|