Skip to content

Commit

Permalink
test: remove user from a project (DEV-2328)
Browse files Browse the repository at this point in the history
  • Loading branch information
irmastnt committed Jan 28, 2025
1 parent 1b707af commit 9f8bc1a
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions apps/dsp-app/cypress/e2e/system-admin/project-members.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,5 @@ describe('Project members', () => {
cy.get('[data-cy=confirmation-button]').should('be.visible').click();
cy.wait('@deleteRequest').its('response.statusCode').should('eq', 200);
cy.wait('@membersRequest').its('response.statusCode').should('eq', 200);
cy.get('[data-cy=member-count]')
.invoke('text')
.then(text => {
const currentMemberCount = parseInt(text.match(/\d+/)?.[0]);
expect(currentMemberCount).to.be.eq(memberCount - 1);
});
});
});

0 comments on commit 9f8bc1a

Please sign in to comment.