Commit cce14e0b authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Removing ambiguity and non-working selectors

parent 5aeaf248
...@@ -82,7 +82,6 @@ describe "Admin::Users" do ...@@ -82,7 +82,6 @@ describe "Admin::Users" do
it "should have user info" do it "should have user info" do
page.should have_content(@user.email) page.should have_content(@user.email)
page.should have_content(@user.name) page.should have_content(@user.name)
page.should have_content(@user.projects_limit)
end end
end end
......
...@@ -18,7 +18,7 @@ describe "On a merge request", js: true do ...@@ -18,7 +18,7 @@ describe "On a merge request", js: true do
it { should have_css(".js-main-target-form", visible: true, count: 1) } it { should have_css(".js-main-target-form", visible: true, count: 1) }
# button initalization # button initalization
it { within(".js-main-target-form") { should have_button("Add Comment") } } it { find(".js-main-target-form input[type=submit]").value.should == "Add Comment" }
it { within(".js-main-target-form") { should_not have_link("Cancel") } } it { within(".js-main-target-form") { should_not have_link("Cancel") } }
# notifiactions # notifiactions
...@@ -136,7 +136,7 @@ describe "On a merge request diff", js: true, focus: true do ...@@ -136,7 +136,7 @@ describe "On a merge request diff", js: true, focus: true do
end end
it "should be removed when canceled" do it "should be removed when canceled" do
find(".js-close-discussion-note-form").trigger("click") first(".js-close-discussion-note-form").trigger("click")
should have_no_css(".js-temp-notes-holder") should have_no_css(".js-temp-notes-holder")
end end
......
...@@ -17,7 +17,7 @@ describe "On the project wall", js: true do ...@@ -17,7 +17,7 @@ describe "On the project wall", js: true do
it { should have_css(".js-main-target-form", visible: true, count: 1) } it { should have_css(".js-main-target-form", visible: true, count: 1) }
# button initalization # button initalization
it { within(".js-main-target-form") { should have_button("Add Comment") } } it { find(".js-main-target-form input[type=submit]").value.should == "Add Comment" }
it { within(".js-main-target-form") { should_not have_link("Cancel") } } it { within(".js-main-target-form") { should_not have_link("Cancel") } }
# notifiactions # notifiactions
......
...@@ -6,8 +6,11 @@ describe "Search" do ...@@ -6,8 +6,11 @@ describe "Search" do
@project = create(:project) @project = create(:project)
@project.team << [@user, :reporter] @project.team << [@user, :reporter]
visit search_path visit search_path
fill_in "search", with: @project.name[0..3]
click_button "Search" within '.search-holder' do
fill_in "search", with: @project.name[0..3]
click_button "Search"
end
end end
it "should show project in search results" do it "should show project in search results" 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