d9d7c69432
Add library to manage async resource Make Store reusable for easier testing Move plugin to libs Add getTaskFor getter with tests
9 lines
226 B
JavaScript
9 lines
226 B
JavaScript
import generateStore from 'client/store';
|
|
import Store from 'client/libs/store';
|
|
|
|
describe('Application store', () => {
|
|
it('is an instance of Store', () => {
|
|
expect(generateStore()).to.be.an.instanceof(Store);
|
|
});
|
|
});
|