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