mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-09 00:05:21 +01:00
24 lines
621 B
TypeScript
24 lines
621 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing'
|
|
|
|
import { SettingsComponent } from './settings.component'
|
|
|
|
describe('SettingsComponent', () => {
|
|
let component: SettingsComponent
|
|
let fixture: ComponentFixture<SettingsComponent>
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [SettingsComponent],
|
|
}).compileComponents()
|
|
})
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(SettingsComponent)
|
|
component = fixture.componentInstance
|
|
fixture.detectChanges()
|
|
})
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy()
|
|
})
|
|
})
|