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

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinicius Reis <vinicius.reis@nextcloud.com>2022-10-17 15:48:37 +0300
committerVinicius Reis <vinicius.reis@nextcloud.com>2022-10-17 15:53:17 +0300
commit8bf096c206a5e7b26b7246a0c15c0ea71192e2e6 (patch)
tree5dc1972b77bf8360b97ac0be5c123cbe1088d20f
parentb901530e68e32756faabde9e2b3d0dc30823d9f4 (diff)
✅ mentions: small test adjust
Signed-off-by: Vinicius Reis <vinicius.reis@nextcloud.com>
-rw-r--r--cypress/e2e/mentions.spec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/cypress/e2e/mentions.spec.js b/cypress/e2e/mentions.spec.js
index b3fd6615b..aecc58978 100644
--- a/cypress/e2e/mentions.spec.js
+++ b/cypress/e2e/mentions.spec.js
@@ -81,10 +81,10 @@ describe('Test mentioning users', () => {
})
})
- it(' Open a document with an existing mention and properly see the user bubble rendered', () => {
+ it('Open a document with an existing mention and properly see the user bubble rendered', () => {
const mentionFilename = 'mention.md'
createFileWithMention(mentionFilename, randUser1)
- cy.openFile(mentionFilename)
+ cy.openFile(mentionFilename, { force: true })
cy.get('.text-editor__content div[contenteditable="true"] span.mention')
.contains(randUser1)
.should('be.visible')