Commit aac6b2b7 authored by Kushal Pandya's avatar Kushal Pandya

Update tests to check emoji autocompletion

parent ffe7c511
...@@ -9,9 +9,9 @@ feature 'Creating a new project milestone', :js do ...@@ -9,9 +9,9 @@ feature 'Creating a new project milestone', :js do
visit new_project_milestone_path(project) visit new_project_milestone_path(project)
end end
it 'description has autocomplete' do it 'description has emoji autocomplete' do
find('#milestone_description').native.send_keys('') find('#milestone_description').native.send_keys('')
fill_in 'milestone_description', with: '@' fill_in 'milestone_description', with: ':'
expect(page).to have_selector('.atwho-view') expect(page).to have_selector('.atwho-view')
end end
......
...@@ -242,7 +242,7 @@ describe "User creates wiki page" do ...@@ -242,7 +242,7 @@ describe "User creates wiki page" do
end end
end end
it "shows the autocompletion dropdown" do it "shows the emoji autocompletion dropdown" do
click_link("New page") click_link("New page")
page.within("#modal-new-wiki") do page.within("#modal-new-wiki") do
...@@ -254,7 +254,7 @@ describe "User creates wiki page" do ...@@ -254,7 +254,7 @@ describe "User creates wiki page" do
page.within(".wiki-form") do page.within(".wiki-form") do
find("#wiki_content").native.send_keys("") find("#wiki_content").native.send_keys("")
fill_in(:wiki_content, with: "@") fill_in(:wiki_content, with: ":")
end end
expect(page).to have_selector(".atwho-view") expect(page).to have_selector(".atwho-view")
......
...@@ -96,11 +96,11 @@ describe 'User updates wiki page' do ...@@ -96,11 +96,11 @@ describe 'User updates wiki page' do
expect(find('textarea#wiki_content').value).to eq('') expect(find('textarea#wiki_content').value).to eq('')
end end
it 'shows the autocompletion dropdown', :js do it 'shows the emoji autocompletion dropdown', :js do
click_link('Edit') click_link('Edit')
find('#wiki_content').native.send_keys('') find('#wiki_content').native.send_keys('')
fill_in(:wiki_content, with: '@') fill_in(:wiki_content, with: ':')
expect(page).to have_selector('.atwho-view') expect(page).to have_selector('.atwho-view')
end end
......
...@@ -75,9 +75,9 @@ feature 'Master creates tag' do ...@@ -75,9 +75,9 @@ feature 'Master creates tag' do
visit new_project_tag_path(project) visit new_project_tag_path(project)
end end
it 'description has autocomplete', :js do it 'description has emoji autocomplete', :js do
find('#release_description').native.send_keys('') find('#release_description').native.send_keys('')
fill_in 'release_description', with: '@' fill_in 'release_description', with: ':'
expect(page).to have_selector('.atwho-view') expect(page).to have_selector('.atwho-view')
end end
......
...@@ -25,13 +25,13 @@ feature 'Master updates tag' do ...@@ -25,13 +25,13 @@ feature 'Master updates tag' do
expect(page).to have_content 'Awesome release notes' expect(page).to have_content 'Awesome release notes'
end end
scenario 'description has autocomplete', :js do scenario 'description has emoji autocomplete', :js do
page.within(first('.content-list .controls')) do page.within(first('.content-list .controls')) do
click_link 'Edit release notes' click_link 'Edit release notes'
end end
find('#release_description').native.send_keys('') find('#release_description').native.send_keys('')
fill_in 'release_description', with: '@' fill_in 'release_description', with: ':'
expect(page).to have_selector('.atwho-view') expect(page).to have_selector('.atwho-view')
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