gitlab-org--gitlab-foss/spec/features/projects/gfm_autocomplete_load_spec.rb
Jacopo 0ce6785851 Replaces tag: true into :tag in the specs
Replaces all the explicit include metadata syntax in the specs (tag:
true) into the implicit one (:tag).
Added a cop to prevent future errors and handle autocorrection.
2017-10-07 13:57:54 +02:00

21 lines
456 B
Ruby

require 'spec_helper'
describe 'GFM autocomplete loading', :js do
let(:project) { create(:project) }
before do
sign_in(create(:admin))
visit project_path(project)
end
it 'does not load on project#show' do
expect(evaluate_script('gl.GfmAutoComplete')).to eq(nil)
end
it 'loads on new issue page' do
visit new_project_issue_path(project)
expect(evaluate_script('gl.GfmAutoComplete.dataSources')).not_to eq({})
end
end