Commit d7450946 authored by Phil Hughes's avatar Phil Hughes

Added tests for compare dropdowns

CHANGELOG
parent 8b9a4963
......@@ -19,6 +19,8 @@ v 8.10.0 (unreleased)
- Fix issue, preventing users w/o push access to sort tags !5105 (redetection)
- Add Spring EmojiOne updates.
- Fix viewing notification settings when a project is pending deletion
- Updated compare dropdown menus to use GL dropdown
- Eager load award emoji on notes
- Fix pagination when sorting by columns with lots of ties (like priority)
- Updated project header design
- Exclude email check from the standard health check
......
require "spec_helper"
describe "Compare", js: true do
let(:user) { create(:user) }
let(:project) { create(:project) }
before do
project.team << [user, :master]
login_as user
visit namespace_project_compare_index_path(project.namespace, project, from: "master", to: "master")
end
describe "branches" do
it "should pre-populate fields" do
expect(page.find_field("from").value).to eq("master")
end
it "should compare branches" do
fill_in "from", with: "mast"
find("#from").click
click_link "feature"
expect(page.find_field("from").value).to eq("feature")
click_button "Compare"
expect(page).to have_content "Commits"
end
end
describe "tags" do
it "should compare tags" do
fill_in "from", with: "v1.0"
find("#from").click
click_link "v1.0.0"
expect(page.find_field("from").value).to eq("v1.0.0")
click_button "Compare"
expect(page).to have_content "Commits"
end
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