logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://anongit.hacktivis.me/git/pleroma-fe.git/
commit: ac44c1bc110c01791226cb460506142bf3a1f952
parent 5ef527d7472a18425aad4d4a5106a0f4230da5a1
Author: Henry Jameson <me@hjkos.com>
Date:   Mon,  3 Feb 2025 16:28:08 +0200

fix double src in tests

Diffstat:

Mtest/unit/specs/stores/lists.spec.js4++--
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 @@ -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()