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