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

25 lines
621 B
TypeScript
Raw Normal View History

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