车队长列表

This commit is contained in:
wangshiming
2021-12-01 15:07:12 +08:00
parent 741912c630
commit d4efbe4468
10 changed files with 579 additions and 414 deletions

View File

@ -0,0 +1,31 @@
/*
* @Description:
* @Author: wsm
* @Date: 2021-07-08 15:46:29
* @LastEditTime: 2021-12-01 10:02:07
* @LastEditors: Please set LastEditors
* @Reference:
*/
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { SupplyGoodsComponentListLargeAmountComponent } from './large-amount.component';
describe('SupplyGoodsComponentListLargeAmountComponent', () => {
let component: SupplyGoodsComponentListLargeAmountComponent;
let fixture: ComponentFixture<SupplyGoodsComponentListLargeAmountComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [SupplyGoodsComponentListLargeAmountComponent],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(SupplyGoodsComponentListLargeAmountComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});