summaryrefslogtreecommitdiff
path: root/spec/features/projects/wiki/shortcuts_spec.rb
blob: ab0ed9b82040b6c94ea0cb42c72624221eae64c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'spec_helper'

feature 'Wiki shortcuts', :feature, :js do
  let(:user) { create(:user) }
  let(:project) { create(:empty_project, namespace: user.namespace) }
  let(:wiki_page) do
    WikiPages::CreateService.new(project, user, title: 'home', content: 'Home page').execute
  end

  before do
    gitlab_sign_in(user)
    visit namespace_project_wiki_path(project.namespace, project, wiki_page)
  end

  scenario 'Visit edit wiki page using "e" keyboard shortcut' do
    find('body').native.send_key('e')

    expect(find('.wiki-page-title')).to have_content('Edit Page')
  end
end