Files
nfflow/front/src/app/page/log/log.component.spec.ts
2024-03-31 20:09:20 +08:00

24 lines
575 B
TypeScript

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