import { ComponentFixture, TestBed } from '@angular/core/testing'; import { ClosingdocsComponent } from './closingdocs.component'; describe('ClosingdocsComponent', () => { let component: ClosingdocsComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ ClosingdocsComponent ] }) .compileComponents(); }); beforeEach(() => { fixture = TestBed.createComponent(ClosingdocsComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });