From 84f1cdf44ec7c6a5bb5487e9bc463c96c8cec613 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Wed, 12 Apr 2017 17:44:17 +0300 Subject: [PATCH] Working on tests --- tests/acceptance/GatewayFeesCest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/acceptance/GatewayFeesCest.php b/tests/acceptance/GatewayFeesCest.php index bf22be60af8e..7b8b85745aec 100644 --- a/tests/acceptance/GatewayFeesCest.php +++ b/tests/acceptance/GatewayFeesCest.php @@ -60,8 +60,9 @@ class GatewayFeesCest $invoiceId = $I->grabFromDatabase('invitations', 'invoice_id', ['invitation_key' => $invitationKey]); $invoicePublicId = $I->grabFromDatabase('invoices', 'public_id', ['id' => $invoiceId]); $I->amOnPage('/invoices/' . $invoicePublicId . '/edit'); + $I->wait(3); $I->click('Save Invoice'); - $I->wait(2); + $I->wait(3); $this->createPayment($I, $invitationKey, $total + $partialFeeWithTax, 0, $partialFeeWithTax); }