Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
ci(cypress): Revert show_hidden method for cypress interception
Signed-off-by: Julius Härtl <[email protected]>
  • Loading branch information
juliusknorr committed Jun 28, 2023
commit a9c03343e614efc725285176ba9d787540dc2ca7
2 changes: 1 addition & 1 deletion cypress/support/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ Cypress.Commands.add('showHiddenFiles', () => {
cy.get('[data-cy-files-navigation-settings-button]')
.click()
cy.get('.app-settings__content').should('be.visible')
cy.intercept({ method: 'PUT', url: '**/show_hidden' }).as('showHidden')
cy.intercept({ method: 'POST', url: '**/show_hidden' }).as('showHidden')
cy.get('.app-settings__content').contains('Show hidden files').closest('label').click()
cy.wait('@showHidden')
cy.get('.modal-container__close').click()
Expand Down