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