mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-23 03:50:56 +00:00
9 lines
267 B
JavaScript
9 lines
267 B
JavaScript
import { describe, expect, test } from 'vitest';
|
|
import Store from '@/libs/store';
|
|
import generateStore from '@/store';
|
|
|
|
describe('Application store', () => {
|
|
test('is an instance of Store', () => {
|
|
expect(generateStore()).to.be.an.instanceof(Store);
|
|
});
|
|
});
|