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