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