overhead stuff

This commit is contained in:
2021-09-02 18:26:55 +02:00
parent 7c180f0986
commit 1ce54cf9cf
11 changed files with 257 additions and 6 deletions

View File

@ -0,0 +1,25 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { OverheadAdvanceDetailsComponent } from './overhead-advance-details.component';
describe('OverheadAdvanceDetailsComponent', () => {
let component: OverheadAdvanceDetailsComponent;
let fixture: ComponentFixture<OverheadAdvanceDetailsComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ OverheadAdvanceDetailsComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(OverheadAdvanceDetailsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});