test: refs #8647 fix warning

This commit is contained in:
Javier Segarra 2025-02-28 10:15:23 +01:00
parent f64c2a2854
commit 287c61f507
1 changed files with 1 additions and 6 deletions

View File

@ -1,13 +1,8 @@
import { describe, expect, it, beforeEach, beforeAll } from 'vitest';
import { createWrapper } from 'app/test/vitest/helper';
import { describe, expect, it, beforeEach } from 'vitest';
import { useStateQueryStore } from 'src/stores/useStateQueryStore';
describe('useStateQueryStore', () => {
beforeAll(() => {
createWrapper({}, {});
});
const stateQueryStore = useStateQueryStore();
const { add, isLoading, remove, reset } = useStateQueryStore();
const firstQuery = { url: 'myQuery' };