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/conversationsStore.spec.js')
-rw-r--r--src/store/conversationsStore.spec.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/store/conversationsStore.spec.js b/src/store/conversationsStore.spec.js
index c2340743c..fc162330a 100644
--- a/src/store/conversationsStore.spec.js
+++ b/src/store/conversationsStore.spec.js
@@ -1,5 +1,6 @@
+/* eslint-disable import/no-named-as-default-member */
import { createLocalVue } from '@vue/test-utils'
-import storeConfig from './storeConfig'
+import storeConfig from './storeConfig.js'
import Vuex from 'vuex'
import { cloneDeep } from 'lodash'
import {
@@ -7,7 +8,7 @@ import {
WEBINAR,
PARTICIPANT,
ATTENDEE,
-} from '../constants'
+} from '../constants.js'
import {
makePublic,
makePrivate,
@@ -26,7 +27,7 @@ import {
deleteConversation,
setConversationPermissions,
setCallPermissions,
-} from '../services/conversationsService'
+} from '../services/conversationsService.js'
jest.mock('../services/conversationsService', () => ({
makePublic: jest.fn(),