1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 12:12:48 +01:00

Working on tests

This commit is contained in:
Hillel Coren 2016-08-02 13:44:36 +03:00
parent 293e7cbb61
commit 00666132e3

View File

@ -5,7 +5,7 @@ $I->checkIfLogin($I);
$I->wantTo('Test all pages load');
// Check all language files
// Check all language files
$count = $I->grabNumRecords('languages');
for ($i=1; $i<=$count; $i++) {
$locale = $I->grabFromDatabase('languages', 'locale', ['id' => $i]);
@ -14,7 +14,7 @@ for ($i=1; $i<=$count; $i++) {
}
// Top level navigation
$I->amOnPage('/dashboard');
$I->amOnPage('/dashboard?lang=en');
$I->see('Total Revenue');
$I->amOnPage('/clients');