This commit is contained in:
Tobi 2021-03-30 19:07:29 +02:00
parent 6bcb12ddc9
commit f62e64357b
6 changed files with 71 additions and 3 deletions

View file

@ -0,0 +1,25 @@
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();
});
});