Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/store/actorStore.spec.js')
-rw-r--r--src/store/actorStore.spec.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/store/actorStore.spec.js b/src/store/actorStore.spec.js
index f64f50fe7..c016b5b76 100644
--- a/src/store/actorStore.spec.js
+++ b/src/store/actorStore.spec.js
@@ -1,8 +1,8 @@
import { createLocalVue } from '@vue/test-utils'
-import actorStore from './actorStore'
+import actorStore from './actorStore.js'
import Vuex from 'vuex'
import { cloneDeep } from 'lodash'
-import { PARTICIPANT } from '../constants'
+import { PARTICIPANT } from '../constants.js'
describe('actorStore', () => {
let localVue = null
@@ -11,6 +11,7 @@ describe('actorStore', () => {
beforeEach(() => {
localVue = createLocalVue()
localVue.use(Vuex)
+ // eslint-disable-next-line import/no-named-as-default-member
store = new Vuex.Store(cloneDeep(actorStore))
})