Skip to content

Commit

Permalink
MAGETWO-63474: Functional test for Basic Tier button appearance
Browse files Browse the repository at this point in the history
  • Loading branch information
olysenko committed Feb 6, 2017
1 parent f8454b3 commit 6afafe9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/code/Magento/Analytics/etc/adminhtml/menu.xml
Expand Up @@ -8,6 +8,6 @@
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Backend:etc/menu.xsd">
<menu>
<add id="Magento_Analytics::bi_essentials" title="BI Essentials" translate="title" module="Magento_Analytics" sortOrder="90" parent="Magento_Reports::report" resource="Magento_Analytics::bi_essentials" />
<add id="Magento_Analytics::report_basic_tier" title="Basic Tier" translate="title" module="Magento_Analytics" sortOrder="90" parent="Magento_Analytics::bi_essentials" action="analytics/basictier/signup" resource="Magento_Analytics::report_basic_tier" />
<add id="Magento_Analytics::report_basic_tier" title="Basic Tier" translate="title" module="Magento_Analytics" sortOrder="90" parent="Magento_Analytics::bi_essentials" action="analytics/basictier/signup" target="_blank" resource="Magento_Analytics::report_basic_tier" />
</menu>
</config>
Expand Up @@ -28,12 +28,12 @@ class NavigateMenuTest extends Injectable
*
* @param Dashboard $dashboard
* @param string $menuItem
* @param bool $waitElementNotVisible
* @param bool $waitMenuItemNotVisible
* @return void
*/
public function test(Dashboard $dashboard, $menuItem, $waitElementNotVisible = true)
public function test(Dashboard $dashboard, $menuItem, $waitMenuItemNotVisible = true)
{
$dashboard->open();
$dashboard->getMenuBlock()->navigate($menuItem, $waitElementNotVisible);
$dashboard->getMenuBlock()->navigate($menuItem, $waitMenuItemNotVisible);
}
}

0 comments on commit 6afafe9

Please sign in to comment.