gns3-web-ui/src/app/components/installed-software/installed-software.component.spec.ts
2019-01-15 11:04:49 +01:00

26 lines
715 B
TypeScript

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