import { ComponentFixture, TestBed } from '@angular/core/testing'; import { LogsComponent } from './logs.component'; describe('LogsComponent', () => { let component: LogsComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ LogsComponent ] }) .compileComponents(); }); beforeEach(() => { fixture = TestBed.createComponent(LogsComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });