25 lines
744 B
TypeScript
25 lines
744 B
TypeScript
import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
import { SupplyManagementVehicleComponent } from './vehicle.component';
|
|
|
|
describe('SupplyManagementVehicleComponent', () => {
|
|
let component: SupplyManagementVehicleComponent;
|
|
let fixture: ComponentFixture<SupplyManagementVehicleComponent>;
|
|
|
|
beforeEach(waitForAsync(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ SupplyManagementVehicleComponent ]
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(SupplyManagementVehicleComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|