import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { MenuEngineeringReportComponent } from './menu-engineering-report.component'; describe('MenuEngineeringReportComponent', () => { let component: MenuEngineeringReportComponent; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ declarations: [MenuEngineeringReportComponent], }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(MenuEngineeringReportComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });