mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
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>
This commit is contained in:
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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue