diff --git a/src/stores/__tests__/useStateQueryStore.spec.js b/src/stores/__tests__/useStateQueryStore.spec.js index ab3afb007..c7063f176 100644 --- a/src/stores/__tests__/useStateQueryStore.spec.js +++ b/src/stores/__tests__/useStateQueryStore.spec.js @@ -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' };