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 <opensource@fthiessen.de>
pull/57129/head
Ferdinand Thiessen 2025-10-15 16:00:01 +07:00
parent 463a5bd033
commit d9b0346a84
1 changed files with 1 additions and 1 deletions

@ -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)