From d9b0346a84ea74d1a63d77f5bb24fa838df3d189 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Wed, 15 Oct 2025 16:00:01 +0200 Subject: [PATCH] chore: ensure no `.only` is commited in test files `.only` is only to be used for development, but must not be committed. Instead failing tests which should be kept for later should be skipped (`.skip`). Signed-off-by: Ferdinand Thiessen --- cypress/e2e/files/files-copy-move.cy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/e2e/files/files-copy-move.cy.ts b/cypress/e2e/files/files-copy-move.cy.ts index 197283bd65c..086248eef3c 100644 --- a/cypress/e2e/files/files-copy-move.cy.ts +++ b/cypress/e2e/files/files-copy-move.cy.ts @@ -78,7 +78,7 @@ describe('Files: Move or copy files', { testIsolation: true }, () => { getRowForFile('original folder').should('not.exist') }) - it.only('Can move a file to its parent folder', () => { + it('Can move a file to its parent folder', () => { cy.mkdir(currentUser, '/new-folder') cy.uploadContent(currentUser, new Blob(), 'text/plain', '/new-folder/original.txt') cy.login(currentUser)