Files
brewman/overlord/src/app/raw-material-cost/raw-material-cost.component.spec.ts
2020-11-23 17:12:27 +05:30

28 lines
877 B
TypeScript

import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { ReactiveFormsModule } from '@angular/forms';
import { RouterTestingModule } from '@angular/router/testing';
import { RawMaterialCostComponent } from './raw-material-cost.component';
describe('RawMaterialCostComponent', () => {
let component: RawMaterialCostComponent;
let fixture: ComponentFixture<RawMaterialCostComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [ReactiveFormsModule, RouterTestingModule],
declarations: [RawMaterialCostComponent],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(RawMaterialCostComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});