Files
headup_app/src/app/components/logbook/logbook.component.spec.ts
T
2024-05-04 02:08:04 +02:00

22 lines
555 B
TypeScript

import { ComponentFixture, TestBed } from '@angular/core/testing';
import { LogbookComponent } from './logbook.component';
describe('LogbookComponent', () => {
let component: LogbookComponent;
let fixture: ComponentFixture<LogbookComponent>;
beforeEach(() => {
TestBed.configureTestingModule({
imports: [LogbookComponent]
});
fixture = TestBed.createComponent(LogbookComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});