mirror of
https://github.com/wassname/generator-react-webpack.git
synced 2026-08-22 12:01:14 +08:00
14 lines
245 B
JavaScript
14 lines
245 B
JavaScript
'use strict';
|
|
|
|
describe('<%= classedName %>', function() {
|
|
var store;
|
|
|
|
beforeEach(function() {
|
|
store = require('stores/<%= classedFileName %>.js');
|
|
});
|
|
|
|
it('should be defined', function() {
|
|
expect(store).toBeDefined();
|
|
});
|
|
});
|