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