VICE / Client / src / app / vminfo / vminfo.component.spec.ts
vminfo.component.spec.ts
Raw
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { VminfoComponent } from './vminfo.component';

describe('VminfoComponent', () => {
  let component: VminfoComponent;
  let fixture: ComponentFixture<VminfoComponent>;

  beforeEach(async () => {
    await TestBed.configureTestingModule({
      declarations: [ VminfoComponent ]
    })
    .compileComponents();
  });

  beforeEach(() => {
    fixture = TestBed.createComponent(VminfoComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});