Skip to content

Commit

Permalink
fix(eslint): revert rule for testing
Browse files Browse the repository at this point in the history
- storeConfig import messagesStore as well, so there might be a loop while initializing

Signed-off-by: Maksim Sukharev <[email protected]>
  • Loading branch information
Antreesy committed Dec 7, 2023
1 parent f547743 commit 467dad2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/store/messagesStore.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ import Vuex from 'vuex'

import { showError } from '@nextcloud/dialogs'

import messagesStore from './messagesStore.js'
import storeConfig from './storeConfig.js'
// eslint-disable-next-line import/order -- required for testing
import messagesStore from './messagesStore.js'
import {
ATTENDEE, CHAT,
} from '../constants.js'
Expand Down
3 changes: 2 additions & 1 deletion src/store/participantsStore.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ import Vuex from 'vuex'

import { emit } from '@nextcloud/event-bus'

import participantsStore from './participantsStore.js'
import storeConfig from './storeConfig.js'
// eslint-disable-next-line import/order -- required for testing
import participantsStore from './participantsStore.js'
import { PARTICIPANT } from '../constants.js'
import {
joinCall,
Expand Down

0 comments on commit 467dad2

Please sign in to comment.