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