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