generator-terminus-ui
Version:
A generator for adding new components to the Terminus UI library.
17 lines (10 loc) • 303 B
text/typescript
import { <%= componentName %> } from './<%= kebabName %>.component';
describe(`<%= componentName %>`, () => {
let component: <%= componentName %>;
beforeEach(() => {
component = new <%= componentName %>();
});
test(`should exist`, () => {
expect(component).toBeTruthy();
});
});