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