Skip to content

Commit

Permalink
cypress: Replace click({multiple: true})
Browse files Browse the repository at this point in the history
  • Loading branch information
mamedin committed Sep 27, 2023
1 parent 6a586bc commit 442b756
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cypress/e2e/csv_import.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('CSV import', () => {

cy.contains('CSV import order fonds').click()
cy.waitUntil(() => Cypress.$('li.jstree-node').length === 4)
cy.get('li.jstree-closed > i').as('btn').click()
cy.get('li.jstree-closed > i').as('btn').click({ multiple: true })
cy.get('@btn').click()
cy.waitUntil(() => Cypress.$('li.jstree-node').length === 34)

Expand Down

0 comments on commit 442b756

Please sign in to comment.