diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index b10b12cd5..14661bda9 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -192,6 +192,8 @@ jobs: - name: Run Nextcloud run: php -S 0.0.0.0:8081 & + env: + PHP_CLI_SERVER_WORKERS: 3 - name: Cypress run uses: cypress-io/github-action@v6 diff --git a/cypress/e2e/collective-members.spec.js b/cypress/e2e/collective-members.spec.js index c16d5e5b6..3f48d175a 100644 --- a/cypress/e2e/collective-members.spec.js +++ b/cypress/e2e/collective-members.spec.js @@ -101,9 +101,7 @@ describe('Collective members', function() { cy.wait('@removeCircleMember') cy.wait('@getCircleMembers') - // Fixme: removing members from a circle is async and doesn't work with - // the single process PHP webserver used in CI. - // cy.get('.current-members .member-row').should('not.contain', member) + cy.get('.current-members .member-row').should('not.contain', member) }) }) })