paperless-ngx/src-ui/src/app/components/common/loading-dialog/loading-dialog.component.spec.ts
shamoon 3b1ac7a144 Revert "Update tests for new viewer"
This reverts commit 312031e6f1846cf671ec51a175fe8288e9b7d0c8.
2023-11-30 14:23:40 -08:00

22 lines
592 B
TypeScript

import { ComponentFixture, TestBed } from '@angular/core/testing'
import { LoadingDialogComponent } from './loading-dialog.component'
describe('LoadingDialogComponent', () => {
let component: LoadingDialogComponent
let fixture: ComponentFixture<LoadingDialogComponent>
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [LoadingDialogComponent],
})
fixture = TestBed.createComponent(LoadingDialogComponent)
component = fixture.componentInstance
fixture.detectChanges()
})
it('needs tests', () => {
expect(false).toBeTruthy()
})
})