mirror of
https://github.com/react-webpack-generators/generator-react-webpack.git
synced 2025-12-08 18:01:59 +00:00
15 lines
386 B
JavaScript
15 lines
386 B
JavaScript
'use strict';
|
|
|
|
describe('<%= classedName %>', function () {
|
|
var <%= classedName %>, component;
|
|
|
|
beforeEach(function () {
|
|
<%= classedName %> = require('../../../src/scripts/components/<%= classedFileName %>.jsx');
|
|
component = <%= classedName %>();
|
|
});
|
|
|
|
it('should create a new instance of <%= classedName %>', function () {
|
|
expect(component).toBeDefined();
|
|
});
|
|
});
|