2021-03-30 19:07:29 +02:00
|
|
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
|
2021-03-30 19:26:20 +02:00
|
|
|
import { DocumentAsnComponent } from './document-asn.component';
|
2021-03-30 19:07:29 +02:00
|
|
|
|
|
|
|
|
describe('DocumentASNComponentComponent', () => {
|
2021-03-30 19:26:20 +02:00
|
|
|
let component: DocumentAsnComponent;
|
|
|
|
|
let fixture: ComponentFixture<DocumentAsnComponent>;
|
2021-03-30 19:07:29 +02:00
|
|
|
|
|
|
|
|
beforeEach(async () => {
|
|
|
|
|
await TestBed.configureTestingModule({
|
2021-03-30 19:26:20 +02:00
|
|
|
declarations: [ DocumentAsnComponent ]
|
2021-03-30 19:07:29 +02:00
|
|
|
})
|
|
|
|
|
.compileComponents();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2021-03-30 19:26:20 +02:00
|
|
|
fixture = TestBed.createComponent(DocumentAsnComponent);
|
2021-03-30 19:07:29 +02:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
|
fixture.detectChanges();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
|
});
|
|
|
|
|
});
|