Commit d0d918c7 authored by Phil Hughes's avatar Phil Hughes

layout-nav test check fix

parent 669fb299
......@@ -7,11 +7,11 @@ module SharedActiveTab
end
def ensure_active_main_tab(content)
expect(find('.layout-nav li.active')).to have_content(content)
expect(find('.sidebar-top-level-items > li.active')).to have_content(content)
end
def ensure_active_sub_tab(content)
expect(find('.sub-nav li.active')).to have_content(content)
expect(find('.sidebar-sub-level-items > li.active')).to have_content(content)
end
def ensure_active_sub_nav(content)
......@@ -19,11 +19,11 @@ module SharedActiveTab
end
step 'no other main tabs should be active' do
expect(page).to have_selector('.layout-nav .nav-links > li.active', count: 1)
expect(page).to have_selector('.sidebar-top-level-items > li.active', count: 1)
end
step 'no other sub tabs should be active' do
expect(page).to have_selector('.sub-nav li.active', count: 1)
expect(page).to have_selector('.sidebar-sub-level-items > li.active', count: 1)
end
step 'no other sub navs should be active' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment