Files
generator-react-webpack/templates/javascript/spec/Component.js
T
2014-01-08 11:10:07 +00:00

15 lines
378 B
JavaScript

'use strict';
describe('<%= classedName %>', function () {
var <%= classedName %>, component;
beforeEach(function () {
<%= classedName %> = require('../../../src/scripts/components/<%= classedName %>');
component = <%= classedName %>();
});
it('should create a new instance of <%= classedName %>', function () {
expect(component).toBeDefined();
});
});