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:
authorMax <max@nextcloud.com>2022-02-21 14:01:07 +0300
committerMax <max@nextcloud.com>2022-03-02 10:18:04 +0300
commit7782f4ddfb05bbbb78f25778999c8b74290b4874 (patch)
treefc82f0ca75767db74936f73d6e347a7d8a9c3976 /cypress
parent2e80643ec45fce28ebecf1e0e2a57171d4ff1d80 (diff)
use filelist PROPFIND for loading workspace
See #2171. Even though this is meant to improve load times I did not observe any improvements locally. I suspect that is because the workspace was loaded in parallel with the PROPFIND anyway. Experience may differ in production environments obviously. It is still one request less and the code also seems more clean. Signed-off-by: Max <max@nextcloud.com>
Diffstat (limited to 'cypress')
-rw-r--r--cypress/integration/workspace.spec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/cypress/integration/workspace.spec.js b/cypress/integration/workspace.spec.js
index 6f9174c14..fd0289d53 100644
--- a/cypress/integration/workspace.spec.js
+++ b/cypress/integration/workspace.spec.js
@@ -118,7 +118,7 @@ const submenuButton = (name) => {
const menuBubbleButton = submenuButton
const openWorkspace = () => {
- cy.get('#rich-workspace').click()
+ cy.get('#rich-workspace .empty-workspace').click()
cy.get('#editor .content-wrapper').click()
return cy.get('#rich-workspace .ProseMirror')
}