Commit bb3111c1 authored by Alfredo Sumaran's avatar Alfredo Sumaran

Ensure project name is present on page

parent 9bdfc982
require 'spec_helper'
feature 'Project shortcuts', feature: true do
let(:project) { create(:project) }
let(:project) { create(:project, name: 'Victorialand') }
let(:user) { create(:user) }
describe 'On a project', js: true do
......@@ -14,7 +14,7 @@ feature 'Project shortcuts', feature: true do
describe 'pressing "i"' do
it 'redirects to new issue page' do
find('body').native.send_key('i')
expect(page).to have_content('New Issue')
expect(page).to have_content('Victorialand')
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