Skip to content

Commit

Permalink
Increase wait time in Home & Help page cypress tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aratidgr8 committed Sep 19, 2024
1 parent a6265d0 commit 4ac5661
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/cypress/integration/help.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ describe( 'Help Page', function () {

it( 'Is Accessible', () => {
cy.injectAxe();
cy.wait( 500 );
cy.wait( 1000 );
cy.checkA11y( '.wppbh-app-body' );
} );

Expand Down
2 changes: 1 addition & 1 deletion tests/cypress/integration/home.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe( 'Home Page', function () {
} );

it( 'Is Accessible', () => {
cy.wait( 500 );
cy.wait( 1000 );
cy.checkA11y( '.wppbh-app-body' );
} );

Expand Down

0 comments on commit 4ac5661

Please sign in to comment.