barker/bookie/src/app/menu-engineering-report/menu-engineering-report.com...

25 lines
743 B
TypeScript

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