mirror of
https://github.com/react-webpack-generators/generator-react-webpack.git
synced 2025-12-08 18:01:59 +00:00
14 lines
249 B
JavaScript
14 lines
249 B
JavaScript
'use strict';
|
|
|
|
describe('<%= classedName %>', function() {
|
|
var action;
|
|
|
|
beforeEach(function() {
|
|
action = require('actions/<%= classedFileName %>.js');
|
|
});
|
|
|
|
it('should be defined', function() {
|
|
expect(action).toBeDefined();
|
|
});
|
|
});
|