From fa5c9555cc9bacc6011204a85df871ff585e4c70 Mon Sep 17 00:00:00 2001 From: Max Date: Fri, 15 Dec 2023 14:34:53 +0100 Subject: [PATCH] test(cy): skip test failing due to server issue https://github.com/nextcloud/server/issues/42306 causes the DELETE request to fail with 423 Locked. Signed-off-by: Max --- cypress/e2e/attachments.spec.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cypress/e2e/attachments.spec.js b/cypress/e2e/attachments.spec.js index 0222f949768..5030bd06c79 100644 --- a/cypress/e2e/attachments.spec.js +++ b/cypress/e2e/attachments.spec.js @@ -371,7 +371,8 @@ describe('Test all attachment insertion methods', () => { }) }) - it('test if attachment folder is deleted after having deleted a markdown file', () => { + // Skip as https://github.com/nextcloud/server/issues/42306 causes this to fail. + it.skip('test if attachment folder is deleted after having deleted a markdown file', () => { const fileName = 'deleteSource.md' cy.createMarkdown(fileName, '![git](.attachments.123/github.png)', false).then((fileId) => { const attachmentsFolder = `.attachments.${fileId}`