mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-19 15:48:04 +01:00
10 lines
267 B
JavaScript
10 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);
|
|
});
|
|
});
|