Skip to content

Commit

Permalink
fix: project page e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorGoryany committed Sep 9, 2024
1 parent 0366b65 commit 42af6bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cypress/e2e/projects.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ describe('Projects', () => {
cy.get(projectListItemTitle.query).should('contain.text', testProjectTitle);
cy.get(dashboardLoadMore.query).click();
cy.get(`[href="${routes.project(testProjectKey)}"]`).should('exist');
cy.get(projectListItemTitle.query).filter(`:contains(${testProjectTitle})`).last().click({ force: true });
cy.visit(exactUrl(routes.project(testProjectKey)));
// wait for correct page
cy.get(filtersPanelTitle.query).should('contain', testProjectTitle);
cy.url().should('equal', exactUrl(routes.project(testProjectKey)));
Expand Down

0 comments on commit 42af6bb

Please sign in to comment.