better lint
This commit is contained in:
parent
e554eeeef6
commit
18d8ea6b63
123 changed files with 362 additions and 205 deletions
|
|
@ -2,6 +2,7 @@ import { mount } from '@vue/test-utils'
|
|||
import { createStore } from 'vuex'
|
||||
|
||||
import UserProfile from 'src/components/user_profile/user_profile.vue'
|
||||
|
||||
import { getters } from 'src/modules/users.js'
|
||||
import backendInteractorService from 'src/services/backend_interactor_service/backend_interactor_service.js'
|
||||
|
||||
|
|
|
|||
|
|
@ -1,9 +1,10 @@
|
|||
import { createPinia, setActivePinia } from 'pinia'
|
||||
import { createStore } from 'vuex'
|
||||
|
||||
import apiModule from 'src/modules/api.js'
|
||||
import { useListsStore } from 'src/stores/lists.js'
|
||||
|
||||
import apiModule from 'src/modules/api.js'
|
||||
|
||||
setActivePinia(createPinia())
|
||||
const store = useListsStore()
|
||||
window.vuex = createStore({
|
||||
|
|
|
|||
|
|
@ -3,13 +3,14 @@ import { createPinia, setActivePinia } from 'pinia'
|
|||
import { createApp } from 'vue'
|
||||
import { createStore } from 'vuex'
|
||||
|
||||
import { useOAuthStore } from 'src/stores/oauth.js'
|
||||
import {
|
||||
authApis,
|
||||
injectMswToTest,
|
||||
testServer,
|
||||
} from '/test/fixtures/mock_api.js'
|
||||
|
||||
import { useOAuthStore } from 'src/stores/oauth.js'
|
||||
|
||||
const test = injectMswToTest(authApis)
|
||||
|
||||
const vuexStore = createStore({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue