Files
bbq/src/app/routes/insurance-management/components/bulk-detail/bulk-detail.component.spec.ts
2022-01-24 15:59:51 +08:00

25 lines
766 B
TypeScript

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