mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-17 07:40:16 +01:00
26 lines
612 B
TypeScript
26 lines
612 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { LogsComponent } from './logs.component';
|
|
|
|
describe('LogsComponent', () => {
|
|
let component: LogsComponent;
|
|
let fixture: ComponentFixture<LogsComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [ LogsComponent ]
|
|
})
|
|
.compileComponents();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(LogsComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|