Skip to content

Commit

Permalink
chore(tests): Cypress optimizations to help with fails (#23023)
Browse files Browse the repository at this point in the history
  • Loading branch information
codyml committed Feb 7, 2023
1 parent 438cd1c commit 183c5f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ describe('Dashboard load', () => {
it('should send log data', () => {
interceptLog();
cy.visit(WORLD_HEALTH_DASHBOARD);
cy.wait('@logs');
cy.wait('@logs', { timeout: 15000 });
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ describe('Horizontal FilterBar', () => {
cy.getBySel('form-item-value').should('have.length', 3);
cy.viewport(768, 1024);
cy.getBySel('form-item-value').should('have.length', 0);
openMoreFilters();
openMoreFilters(false);
cy.getBySel('form-item-value').should('have.length', 3);

cy.getBySel('filter-bar').click();
Expand Down

0 comments on commit 183c5f9

Please sign in to comment.