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