Commit c9f21c96 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Use page.within in tests

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent d5947ada
......@@ -263,19 +263,19 @@ class Spinach::Features::ProjectIssues < Spinach::FeatureSteps
end
step 'I should not see labels field' do
within '.issue-form' do
page.within '.issue-form' do
expect(page).not_to have_content("Labels")
end
end
step 'I should not see milestone field' do
within '.issue-form' do
page.within '.issue-form' do
expect(page).not_to have_content("Milestone")
end
end
step 'I should not see assignee field' do
within '.issue-form' do
page.within '.issue-form' do
expect(page).not_to have_content("Assign to")
end
end
......
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