mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-05-21 17:58:00 +00:00
26 lines
715 B
TypeScript
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();
|
|
// });
|
|
});
|