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