mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
25 lines
650 B
TypeScript
25 lines
650 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing'
|
|
|
|
import { SelectDialogComponent } from './select-dialog.component'
|
|
|
|
describe('SelectDialogComponent', () => {
|
|
let component: SelectDialogComponent
|
|
let fixture: ComponentFixture<SelectDialogComponent>
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [SelectDialogComponent],
|
|
}).compileComponents()
|
|
})
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(SelectDialogComponent)
|
|
component = fixture.componentInstance
|
|
fixture.detectChanges()
|
|
})
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy()
|
|
})
|
|
})
|