30
1
mirror of https://github.com/joomla-extensions/weblinks.git synced 2024-09-21 17:49:07 +00:00

Merge pull request #245 from yvesh/ordering

Fixed ordering of available tabs in acceptance tests for new staging
This commit is contained in:
Puneet Kala 2016-07-19 22:04:20 +05:30 committed by GitHub
commit aa0a41abe7

View File

@ -185,6 +185,6 @@ class AdministratorCategoriesCest
$I->amOnPage('administrator/index.php?option=com_categories&extension=com_weblinks'); $I->amOnPage('administrator/index.php?option=com_categories&extension=com_weblinks');
$I->clickToolbarButton('New'); $I->clickToolbarButton('New');
$I->waitForText('Web Links: New Category', '30', ['css' => 'h1']); $I->waitForText('Web Links: New Category', '30', ['css' => 'h1']);
$I->verifyAvailableTabs(['Category', 'Publishing', 'Permissions', 'Options']); $I->verifyAvailableTabs(['Category', 'Options', 'Publishing', 'Permissions']);
} }
} }