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