summaryrefslogtreecommitdiffstats
path: root/src/components/LeftSidebar/ConversationsList/Conversation.spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/LeftSidebar/ConversationsList/Conversation.spec.js')
-rw-r--r--src/components/LeftSidebar/ConversationsList/Conversation.spec.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/components/LeftSidebar/ConversationsList/Conversation.spec.js b/src/components/LeftSidebar/ConversationsList/Conversation.spec.js
index ac0b53062..0488f0388 100644
--- a/src/components/LeftSidebar/ConversationsList/Conversation.spec.js
+++ b/src/components/LeftSidebar/ConversationsList/Conversation.spec.js
@@ -475,30 +475,6 @@ describe('Conversation.vue', () => {
expect(updateTokenAction).not.toHaveBeenCalled()
})
- test('redirects when deleting current conversation', async() => {
- const actionHandler = jest.fn().mockResolvedValueOnce()
- const updateTokenAction = jest.fn()
- testStoreConfig.modules.conversationsStore.actions.deleteConversationFromServer = actionHandler
- testStoreConfig.modules.tokenStore.getters.getToken = jest.fn().mockReturnValue(() => TOKEN)
- testStoreConfig.modules.tokenStore.actions.updateToken = updateTokenAction
-
- OC.dialogs.confirm = jest.fn()
-
- const action = shallowMountAndGetAction('Delete conversation')
- expect(action.exists()).toBe(true)
-
- await action.find('button').trigger('click')
-
- expect(OC.dialogs.confirm).toHaveBeenCalled()
-
- // call callback directly
- OC.dialogs.confirm.mock.calls[0][2](true)
-
- expect(actionHandler).toHaveBeenCalledWith(expect.anything(), { token: TOKEN })
- expect($router.push).toHaveBeenCalled()
- expect(updateTokenAction).toHaveBeenCalledWith(expect.anything(), '')
- })
-
test('does not delete conversation when not confirmed', async() => {
const actionHandler = jest.fn().mockResolvedValueOnce()
const updateTokenAction = jest.fn()