chore(tests): Cypress optimizations to help with fails (#23023)

This commit is contained in:
Cody Leff
2023-02-07 12:20:08 -08:00
committed by GitHub
parent 438cd1c150
commit 183c5f9589
2 changed files with 2 additions and 2 deletions

View File

@@ -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 });
});
});

View File

@@ -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();