import {<%= className %>} from './<%= name %>';
import {Component} from '@angular/core';
import {TestBed, async} from '@angular/core/testing';
@Component({
selector: 'mock',
template: `
>
`
})
class MockComponent {}
describe('<%= directiveName %>', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({declarations: [MockComponent]});
TestBed.compileComponents();
}));
it('should render...', () => {
const fixture = TestBed.createComponent(MockComponent);
fixture.detectChanges();
});
});