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