import { ComponentFixture, TestBed } from '@angular/core/testing'; import { VminfoListComponent } from './vminfo-list.component'; describe('VminfoListComponent', () => { let component: VminfoListComponent; let fixture: ComponentFixture<VminfoListComponent>; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ VminfoListComponent ] }) .compileComponents(); }); beforeEach(() => { fixture = TestBed.createComponent(VminfoListComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });