From ac44c1bc110c01791226cb460506142bf3a1f952 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Mon, 3 Feb 2025 16:28:08 +0200 Subject: [PATCH] fix double src in tests --- test/unit/specs/stores/lists.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/specs/stores/lists.spec.js b/test/unit/specs/stores/lists.spec.js index 23b58649a..992355a7f 100644 --- a/test/unit/specs/stores/lists.spec.js +++ b/test/unit/specs/stores/lists.spec.js @@ -1,7 +1,7 @@ import { createPinia, setActivePinia } from 'pinia' -import { useListsStore } from 'src/src/stores/lists.js' +import { useListsStore } from 'src/stores/lists.js' import { createStore } from 'vuex' -import apiModule from '../../../../src/modules/api.js' +import apiModule from 'src/modules/api.js' setActivePinia(createPinia()) const store = useListsStore()