c433082f89
Currently, we label items to be done as "Todo." This is grammatically incorrect and (therefore) confusing—especially to our Spanish-speaking users for whom "todo" has a specific and unrelated meaning. We should use "To Do" and always use it as singular (not "To Dos"). Updates to wording in a few places per MR (ee) discussion Updating locale/gitlab.pot Updates to wording in a few places per MR (ee) discussion Updating locale/gitlab.pot
43 lines
1.1 KiB
Ruby
43 lines
1.1 KiB
Ruby
require 'rails_helper'
|
|
|
|
describe 'Manually create a todo item from issue', :js do
|
|
let!(:project) { create(:project) }
|
|
let!(:issue) { create(:issue, project: project) }
|
|
let!(:user) { create(:user)}
|
|
|
|
before do
|
|
project.add_maintainer(user)
|
|
sign_in(user)
|
|
visit project_issue_path(project, issue)
|
|
end
|
|
|
|
it 'creates todo when clicking button' do
|
|
page.within '.issuable-sidebar' do
|
|
click_button 'Add a To Do'
|
|
expect(page).to have_content 'Mark as done'
|
|
end
|
|
|
|
page.within '.header-content .todos-count' do
|
|
expect(page).to have_content '1'
|
|
end
|
|
|
|
visit project_issue_path(project, issue)
|
|
|
|
page.within '.header-content .todos-count' do
|
|
expect(page).to have_content '1'
|
|
end
|
|
end
|
|
|
|
it 'marks a todo as done' do
|
|
page.within '.issuable-sidebar' do
|
|
click_button 'Add a To Do'
|
|
click_button 'Mark as done'
|
|
end
|
|
|
|
expect(page).to have_selector('.todos-count', visible: false)
|
|
|
|
visit project_issue_path(project, issue)
|
|
|
|
expect(page).to have_selector('.todos-count', visible: false)
|
|
end
|
|
end
|