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