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
committerbackportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com>2022-10-17 16:54:38 +0300
commit7edfd6c5f13f91fed29f17f05f7f63e9fc349f70 (patch)
tree7b9b0f6282fb5caaec04105c4cb2ef5f25586c32
parentb610140d60b978131bb4c4bf24c383946b9f8bae (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')