gitlab-org--gitlab-foss/spec/features/issues/award_spec.rb

52 lines
1.3 KiB
Ruby
Raw Normal View History

2016-04-01 16:25:28 +00:00
require 'rails_helper'
feature 'Issue awards', js: true do
2016-04-01 16:25:28 +00:00
let(:user) { create(:user) }
let(:project) { create(:project, :public) }
2016-04-01 16:25:28 +00:00
let(:issue) { create(:issue, project: project) }
describe 'logged in' do
before do
sign_in(user)
visit project_issue_path(project, issue)
wait_for_requests
2016-04-01 16:25:28 +00:00
end
it 'adds award to issue' do
2016-04-01 16:25:28 +00:00
first('.js-emoji-btn').click
expect(page).to have_selector('.js-emoji-btn.active')
expect(first('.js-emoji-btn')).to have_content '1'
2016-06-01 09:23:09 +00:00
visit project_issue_path(project, issue)
2016-06-01 09:23:09 +00:00
expect(first('.js-emoji-btn')).to have_content '1'
2016-04-01 16:25:28 +00:00
end
it 'removes award from issue' do
2016-04-01 16:25:28 +00:00
first('.js-emoji-btn').click
find('.js-emoji-btn.active').click
expect(first('.js-emoji-btn')).to have_content '0'
2016-06-01 09:23:09 +00:00
visit project_issue_path(project, issue)
2016-06-01 09:23:09 +00:00
expect(first('.js-emoji-btn')).to have_content '0'
2016-04-01 16:25:28 +00:00
end
it 'only has one menu on the page' do
2016-04-01 16:25:28 +00:00
first('.js-add-award').click
expect(page).to have_selector('.emoji-menu')
expect(page).to have_selector('.emoji-menu', count: 1)
2016-04-01 16:25:28 +00:00
end
end
describe 'logged out' do
before do
visit project_issue_path(project, issue)
wait_for_requests
2016-04-01 16:25:28 +00:00
end
it 'does not see award menu button' do
2016-04-01 16:25:28 +00:00
expect(page).not_to have_selector('.js-award-holder')
end
end
end