Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
eh-am committed Aug 16, 2022
1 parent 96e07b5 commit ed7d8d3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions cypress/integration/webapp/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ describe('QueryParams', () => {
};

cy.visit('/');
cy.get('.tags-input').clear().type(myTag);
cy.get('.tags-query button').click();
cy.get(`[aria-label="query-input"] textarea`).clear().type(myTag);
cy.get(`[aria-label="query-input"] button`).click();
validate();

cy.findByTestId('sidebar-continuous-comparison').click();
Expand All @@ -29,5 +29,8 @@ describe('QueryParams', () => {

cy.findByTestId('sidebar-continuous-single').click();
validate();

cy.findByTestId('sidebar-explore-page').click();
validate();
});
});

0 comments on commit ed7d8d3

Please sign in to comment.