paperless-ngx/src-ui/src/app/components/admin/config/config.component.spec.ts
2023-12-20 00:18:17 -08:00

23 lines
576 B
TypeScript

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