paperless-ngx/src-ui/src/app/components/app-frame/app-frame.component.spec.ts

25 lines
622 B
TypeScript
Raw Normal View History

import { ComponentFixture, TestBed } from '@angular/core/testing'
2020-10-27 01:10:18 +01:00
import { AppFrameComponent } from './app-frame.component'
2020-10-27 01:10:18 +01:00
describe('AppFrameComponent', () => {
let component: AppFrameComponent
let fixture: ComponentFixture<AppFrameComponent>
2020-10-27 01:10:18 +01:00
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [AppFrameComponent],
}).compileComponents()
})
2020-10-27 01:10:18 +01:00
beforeEach(() => {
fixture = TestBed.createComponent(AppFrameComponent)
component = fixture.componentInstance
fixture.detectChanges()
})
2020-10-27 01:10:18 +01:00
it('should create', () => {
expect(component).toBeTruthy()
})
})