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