1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 09:21:34 +02:00

Fix for tests

This commit is contained in:
Hillel Coren 2016-10-02 12:51:40 +03:00
parent ee385f9ec9
commit cb1073dccd

View File

@ -17,7 +17,7 @@ class CheckBalanceCest
public function checkBalance(AcceptanceTester $I)
{
$I->wantTo('ensure the balance is correct');
$clientEmail = $this->faker->safeEmail;
$productKey = $this->faker->text(10);
$productPrice = $this->faker->numberBetween(1, 20);
@ -30,7 +30,7 @@ class CheckBalanceCest
$I->see($clientEmail);
$clientId = $I->grabFromCurrentUrl('~clients/(\d+)~');
// create product
$I->amOnPage('/products/create');
$I->fillField(['name' => 'product_key'], $productKey);
@ -38,8 +38,8 @@ class CheckBalanceCest
$I->fillField(['name' => 'cost'], $productPrice);
$I->click('Save');
$I->wait(1);
$I->see($productKey);
//$I->see($productKey);
// create invoice
$I->amOnPage('/invoices/create');
$I->selectDropdown($I, $clientEmail, '.client_select .dropdown-toggle');
@ -51,7 +51,7 @@ class CheckBalanceCest
$invoiceId = $I->grabFromCurrentUrl('~invoices/(\d+)~');
$I->amOnPage("/clients/{$clientId}");
$I->see('Balance $' . $productPrice);
// update the invoice
$I->amOnPage('/invoices/' . $invoiceId);
$I->fillField(['name' => 'invoice_items[0][qty]'], 2);
@ -91,4 +91,4 @@ class CheckBalanceCest
$I->see('Balance $0.00');
$I->see('Paid to Date $' . ($productPrice * 2));
}
}
}