diff --git a/cypress/e2e/process_instances.cy.js b/cypress/e2e/process_instances.cy.js index 6999acc..a04ebd6 100644 --- a/cypress/e2e/process_instances.cy.js +++ b/cypress/e2e/process_instances.cy.js @@ -165,7 +165,7 @@ describe('process-instances', () => { cy.basicPaginationTest(); }); - it('can filter', () => { + it.only('can filter', () => { cy.getBySel('process-instance-list-link').click(); cy.assertAtLeastOneItemInPaginatedResults(); diff --git a/cypress/support/commands.js b/cypress/support/commands.js index 899bbb9..4007451 100644 --- a/cypress/support/commands.js +++ b/cypress/support/commands.js @@ -125,3 +125,8 @@ Cypress.Commands.add('modifyProcessModelPath', (path) => { path.replace('/', ':'); return path; }); + +Cypress.Commands.add('modifyProcessModelPath', (path) => { + path.replace('/', ':'); + return path; +});