mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-04-14 19:47:03 +00:00
8 lines
216 B
JavaScript
8 lines
216 B
JavaScript
import Store from '@/libs/store';
|
|
import generateStore from '@/store';
|
|
|
|
describe('Application store', () => {
|
|
it('is an instance of Store', () => {
|
|
expect(generateStore()).to.be.an.instanceof(Store);
|
|
});
|
|
});
|