19 lines
556 B
Ruby
19 lines
556 B
Ruby
require 'spec_helper'
|
|
|
|
feature 'Issue notes polling' do
|
|
let!(:project) { create(:project, :public) }
|
|
let!(:issue) { create(:issue, project: project) }
|
|
|
|
background do
|
|
visit namespace_project_issue_path(project.namespace, project, issue)
|
|
end
|
|
|
|
scenario 'Another user adds a comment to an issue', js: true do
|
|
note = create(:note, noteable: issue, project: project,
|
|
note: 'Looks good!')
|
|
|
|
page.execute_script('notes.refresh();')
|
|
|
|
expect(page).to have_selector("#note_#{note.id}", text: 'Looks good!')
|
|
end
|
|
end
|