Skip to content

Commit

Permalink
Raised the browser test wait times
Browse files Browse the repository at this point in the history
  • Loading branch information
royduin committed Feb 28, 2022
1 parent ccf6c52 commit 994d4ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Browser/CheckoutTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function testCheckoutAsGuest($createAccountWithEmail = false)
->click('@method-0') // select shipping method
->waitUntilAllAjaxCallsAreFinished()
->click('@continue') // go to payment step
->waitUntilAllAjaxCallsAreFinished(1000)
->waitUntilAllAjaxCallsAreFinished(2000)
->click('@method-0') // select payment method
->waitUntilAllAjaxCallsAreFinished()
->click('@continue') // place order
Expand All @@ -67,7 +67,7 @@ public function testCheckoutAsUser()
->type('@email', $email)
->click('@continue')
->waitUntilAllAjaxCallsAreFinished()
->pause(500)
->pause(1000)
->type('@password', 'IronManSucks.91939')
->click('@continue') // login
->waitUntilAllAjaxCallsAreFinished()
Expand Down

0 comments on commit 994d4ca

Please sign in to comment.