mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-06-21 07:58:25 +00:00
25 lines
644 B
TypeScript
25 lines
644 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { TemplateComponent } from './template.component';
|
|
|
|
describe('TemplateComponent', () => {
|
|
let component: TemplateComponent;
|
|
let fixture: ComponentFixture<TemplateComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [TemplateComponent]
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(TemplateComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
// it('should create', () => {
|
|
// expect(component).toBeTruthy();
|
|
// });
|
|
});
|