/* * @Author: your name * @Date: 2021-12-01 20:05:59 * @LastEditTime: 2021-12-01 20:35:33 * @LastEditors: your name * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @FilePath: \tms-obc-web\src\app\routes\vehicle\components\list\list.component.spec.ts */ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { VehicleComponentsListComponent } from './list.component'; describe('VehicleComponentsListComponent', () => { let component: VehicleComponentsListComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [VehicleComponentsListComponent], }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(VehicleComponentsListComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });