This commit is contained in:
wangshiming
2021-12-07 15:30:12 +08:00
parent 86fe0b1f2b
commit 94fe5ffaae
12 changed files with 1017 additions and 5 deletions

View File

@ -0,0 +1,24 @@
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();
});
});