diff options
author | skjnldsv <skjnldsv@protonmail.com> | 2025-01-24 14:16:38 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2025-02-07 10:07:00 +0100 |
commit | d8df001f7654e8b7bdc53b1859f80465638ed198 (patch) | |
tree | 052fd334a9472535d1d3ac052f4f96cbfc478b02 /cypress/e2e | |
parent | 73e4a13a1c4aeb2cad2ee5488e60078706c0978d (diff) | |
download | nextcloud-server-d8df001f7654e8b7bdc53b1859f80465638ed198.tar.gz nextcloud-server-d8df001f7654e8b7bdc53b1859f80465638ed198.zip |
chore: compile assets
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'cypress/e2e')
-rw-r--r-- | cypress/e2e/files_sharing/FilesSharingUtils.ts | 2 | ||||
-rw-r--r-- | cypress/e2e/files_sharing/note-to-recipient.cy.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cypress/e2e/files_sharing/FilesSharingUtils.ts b/cypress/e2e/files_sharing/FilesSharingUtils.ts index b3a8bb483bc..842c246334b 100644 --- a/cypress/e2e/files_sharing/FilesSharingUtils.ts +++ b/cypress/e2e/files_sharing/FilesSharingUtils.ts @@ -35,7 +35,7 @@ export function createShare(fileName: string, username: string, shareSettings: P export function openSharingDetails(index: number) { cy.get('#app-sidebar-vue').within(() => { - cy.get('[data-cy-files-sharing-share-actions]').eq(index).click() + cy.get('[data-cy-files-sharing-share-actions]').eq(index).click({ force: true }) cy.get('[data-cy-files-sharing-share-permissions-bundle="custom"]').click() }) } diff --git a/cypress/e2e/files_sharing/note-to-recipient.cy.ts b/cypress/e2e/files_sharing/note-to-recipient.cy.ts index edc2a67c4c1..7ccc52110fc 100644 --- a/cypress/e2e/files_sharing/note-to-recipient.cy.ts +++ b/cypress/e2e/files_sharing/note-to-recipient.cy.ts @@ -59,7 +59,7 @@ describe('files_sharing: Note to recipient', { testIsolation: true }, () => { cy.get('[data-cy-sidebar]').within(() => { // Open the share - cy.get('[data-cy-files-sharing-share-actions]').first().click() + cy.get('[data-cy-files-sharing-share-actions]').first().click({ force: true }) // Open the custom settings cy.get('[data-cy-files-sharing-share-permissions-bundle="custom"]').click() |