|
|
|
@@ -0,0 +1,27 @@ |
|
|
|
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; |
|
|
|
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 ], |
|
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA], |
|
|
|
}) |
|
|
|
.compileComponents(); |
|
|
|
})); |
|
|
|
|
|
|
|
beforeEach(() => { |
|
|
|
fixture = TestBed.createComponent(OrdersComponent); |
|
|
|
component = fixture.componentInstance; |
|
|
|
fixture.detectChanges(); |
|
|
|
}); |
|
|
|
|
|
|
|
it('should create', () => { |
|
|
|
expect(component).toBeTruthy(); |
|
|
|
}); |
|
|
|
}); |