Skip to content

Commit d9b0346

Browse files
committed
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 <[email protected]>
1 parent 463a5bd commit d9b0346

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cypress/e2e/files/files-copy-move.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ describe('Files: Move or copy files', { testIsolation: true }, () => {
7878
getRowForFile('original folder').should('not.exist')
7979
})
8080

81-
it.only('Can move a file to its parent folder', () => {
81+
it('Can move a file to its parent folder', () => {
8282
cy.mkdir(currentUser, '/new-folder')
8383
cy.uploadContent(currentUser, new Blob(), 'text/plain', '/new-folder/original.txt')
8484
cy.login(currentUser)

0 commit comments

Comments
 (0)