Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
18d1af84
Commit
18d1af84
authored
Aug 08, 2018
by
Nate Geslin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Combines emoji award spec files into single user_interacts_with_awards_in_issue_spec
Closes: #45238
parent
e6b2e900
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
353 additions
and
369 deletions
+353
-369
changelogs/unreleased/n8rzz-consolidate-specs-testing-emoji-awards.yml
...released/n8rzz-consolidate-specs-testing-emoji-awards.yml
+6
-0
spec/features/issues/award_emoji_spec.rb
spec/features/issues/award_emoji_spec.rb
+0
-146
spec/features/issues/award_spec.rb
spec/features/issues/award_spec.rb
+0
-51
spec/features/issues/user_interacts_with_awards_spec.rb
spec/features/issues/user_interacts_with_awards_spec.rb
+347
-0
spec/features/projects/awards/user_interacts_with_awards_in_issue_spec.rb
...ojects/awards/user_interacts_with_awards_in_issue_spec.rb
+0
-172
No files found.
changelogs/unreleased/n8rzz-consolidate-specs-testing-emoji-awards.yml
0 → 100644
View file @
18d1af84
---
title
:
Combines emoji award spec files into single user_interacts_with_awards_in_issue_spec.rb
file
merge_request
:
21126
author
:
Nate Geslin
type
:
other
spec/features/issues/award_emoji_spec.rb
deleted
100644 → 0
View file @
e6b2e900
require
'rails_helper'
describe
'Awards Emoji'
do
let!
(
:project
)
{
create
(
:project
,
:public
)
}
let!
(
:user
)
{
create
(
:user
)
}
let
(
:issue
)
do
create
(
:issue
,
assignees:
[
user
],
project:
project
)
end
context
'authorized user'
do
before
do
project
.
add_maintainer
(
user
)
sign_in
(
user
)
end
describe
'visiting an issue with a legacy award emoji that is not valid anymore'
do
before
do
# The `heart_tip` emoji is not valid anymore so we need to skip validation
issue
.
award_emoji
.
build
(
user:
user
,
name:
'heart_tip'
).
save!
(
validate:
false
)
visit
project_issue_path
(
project
,
issue
)
wait_for_requests
end
# Regression test: https://gitlab.com/gitlab-org/gitlab-ce/issues/29529
it
'does not shows a 500 page'
,
:js
do
expect
(
page
).
to
have_text
(
issue
.
title
)
end
end
describe
'Click award emoji from issue#show'
do
let!
(
:note
)
{
create
(
:note_on_issue
,
noteable:
issue
,
project:
issue
.
project
,
note:
"Hello world"
)
}
before
do
visit
project_issue_path
(
project
,
issue
)
wait_for_requests
end
it
'increments the thumbsdown emoji'
,
:js
do
find
(
'[data-name="thumbsdown"]'
).
click
wait_for_requests
expect
(
thumbsdown_emoji
).
to
have_text
(
"1"
)
end
context
'click the thumbsup emoji'
do
it
'increments the thumbsup emoji'
,
:js
do
find
(
'[data-name="thumbsup"]'
).
click
wait_for_requests
expect
(
thumbsup_emoji
).
to
have_text
(
"1"
)
end
it
'decrements the thumbsdown emoji'
,
:js
do
expect
(
thumbsdown_emoji
).
to
have_text
(
"0"
)
end
end
context
'click the thumbsdown emoji'
do
it
'increments the thumbsdown emoji'
,
:js
do
find
(
'[data-name="thumbsdown"]'
).
click
wait_for_requests
expect
(
thumbsdown_emoji
).
to
have_text
(
"1"
)
end
it
'decrements the thumbsup emoji'
,
:js
do
expect
(
thumbsup_emoji
).
to
have_text
(
"0"
)
end
end
it
'toggles the smiley emoji on a note'
,
:js
do
toggle_smiley_emoji
(
true
)
within
(
'.note-body'
)
do
expect
(
find
(
emoji_counter
)).
to
have_text
(
"1"
)
end
toggle_smiley_emoji
(
false
)
within
(
'.note-body'
)
do
expect
(
page
).
not_to
have_selector
(
emoji_counter
)
end
end
context
'execute /award quick action'
do
it
'toggles the emoji award on noteable'
,
:js
do
execute_quick_action
(
'/award :100:'
)
expect
(
find
(
noteable_award_counter
)).
to
have_text
(
"1"
)
execute_quick_action
(
'/award :100:'
)
expect
(
page
).
not_to
have_selector
(
noteable_award_counter
)
end
end
end
end
context
'unauthorized user'
,
:js
do
before
do
visit
project_issue_path
(
project
,
issue
)
end
it
'has disabled emoji button'
do
expect
(
first
(
'.award-control'
)[
:class
]).
to
have_text
(
'disabled'
)
end
end
def
execute_quick_action
(
cmd
)
within
(
'.js-main-target-form'
)
do
fill_in
'note[note]'
,
with:
cmd
click_button
'Comment'
end
wait_for_requests
end
def
thumbsup_emoji
page
.
all
(
emoji_counter
).
first
end
def
thumbsdown_emoji
page
.
all
(
emoji_counter
).
last
end
def
emoji_counter
'span.js-counter'
end
def
noteable_award_counter
".awards .active"
end
def
toggle_smiley_emoji
(
status
)
within
(
'.note'
)
do
find
(
'.note-emoji-button'
).
click
end
unless
status
first
(
'[data-name="smiley"]'
).
click
else
find
(
'[data-name="smiley"]'
).
click
end
wait_for_requests
end
end
spec/features/issues/award_spec.rb
deleted
100644 → 0
View file @
e6b2e900
require
'rails_helper'
describe
'Issue awards'
,
:js
do
let
(
:user
)
{
create
(
:user
)
}
let
(
:project
)
{
create
(
:project
,
:public
)
}
let
(
:issue
)
{
create
(
:issue
,
project:
project
)
}
describe
'logged in'
do
before
do
sign_in
(
user
)
visit
project_issue_path
(
project
,
issue
)
wait_for_requests
end
it
'adds award to issue'
do
first
(
'.js-emoji-btn'
).
click
expect
(
page
).
to
have_selector
(
'.js-emoji-btn.active'
)
expect
(
first
(
'.js-emoji-btn'
)).
to
have_content
'1'
visit
project_issue_path
(
project
,
issue
)
expect
(
first
(
'.js-emoji-btn'
)).
to
have_content
'1'
end
it
'removes award from issue'
do
first
(
'.js-emoji-btn'
).
click
find
(
'.js-emoji-btn.active'
).
click
expect
(
first
(
'.js-emoji-btn'
)).
to
have_content
'0'
visit
project_issue_path
(
project
,
issue
)
expect
(
first
(
'.js-emoji-btn'
)).
to
have_content
'0'
end
it
'only has one menu on the page'
do
first
(
'.js-add-award'
).
click
expect
(
page
).
to
have_selector
(
'.emoji-menu'
)
expect
(
page
).
to
have_selector
(
'.emoji-menu'
,
count:
1
)
end
end
describe
'logged out'
do
before
do
visit
project_issue_path
(
project
,
issue
)
wait_for_requests
end
it
'does not see award menu button'
do
expect
(
page
).
not_to
have_selector
(
'.js-award-holder'
)
end
end
end
spec/features/issues/user_interacts_with_awards_spec.rb
0 → 100644
View file @
18d1af84
require
'spec_helper'
describe
'User interacts with awards'
do
let
(
:user
)
{
create
(
:user
)
}
describe
'User interacts with awards in an issue'
,
:js
do
let
(
:issue
)
{
create
(
:issue
,
project:
project
)}
let
(
:project
)
{
create
(
:project
)
}
before
do
project
.
add_maintainer
(
user
)
sign_in
(
user
)
visit
(
project_issue_path
(
project
,
issue
))
end
it
'toggles the thumbsup award emoji'
do
page
.
within
(
'.awards'
)
do
thumbsup
=
page
.
first
(
'.award-control'
)
thumbsup
.
click
thumbsup
.
hover
expect
(
page
).
to
have_selector
(
'.js-emoji-btn'
)
expect
(
page
).
to
have_css
(
".js-emoji-btn.active[data-original-title='You']"
)
expect
(
page
.
find
(
'.js-emoji-btn.active .js-counter'
)).
to
have_content
(
'1'
)
thumbsup
=
page
.
first
(
'.award-control'
)
thumbsup
.
click
thumbsup
.
hover
expect
(
page
).
to
have_selector
(
'.award-control.js-emoji-btn'
)
expect
(
page
.
all
(
'.award-control.js-emoji-btn'
).
size
).
to
eq
(
2
)
page
.
all
(
'.award-control.js-emoji-btn'
).
each
do
|
element
|
expect
(
element
[
'title'
]).
to
eq
(
''
)
end
expect
(
page
.
all
(
'.award-control .js-counter'
)).
to
all
(
have_content
(
'0'
))
thumbsup
=
page
.
first
(
'.award-control'
)
thumbsup
.
click
thumbsup
.
hover
expect
(
page
).
to
have_selector
(
'.js-emoji-btn'
)
expect
(
page
).
to
have_css
(
".js-emoji-btn.active[data-original-title='You']"
)
expect
(
page
.
find
(
'.js-emoji-btn.active .js-counter'
)).
to
have_content
(
'1'
)
end
end
it
'toggles a custom award emoji'
do
page
.
within
(
'.awards'
)
do
page
.
find
(
'.js-add-award'
).
click
end
page
.
find
(
'.emoji-menu.is-visible'
)
expect
(
page
).
to
have_selector
(
'.js-emoji-menu-search'
)
expect
(
page
.
evaluate_script
(
"document.activeElement.classList.contains('js-emoji-menu-search')"
)).
to
eq
(
true
)
page
.
within
(
'.emoji-menu-content'
)
do
emoji_button
=
page
.
first
(
'.js-emoji-btn'
)
emoji_button
.
hover
emoji_button
.
click
end
page
.
within
(
'.awards'
)
do
expect
(
page
).
to
have_selector
(
'.js-emoji-btn'
)
expect
(
page
.
find
(
'.js-emoji-btn.active .js-counter'
)).
to
have_content
(
'1'
)
expect
(
page
).
to
have_css
(
".js-emoji-btn.active[data-original-title='You']"
)
expect
do
page
.
find
(
'.js-emoji-btn.active'
).
click
wait_for_requests
end
.
to
change
{
page
.
all
(
'.award-control.js-emoji-btn'
).
size
}.
from
(
3
).
to
(
2
)
end
end
it
'shows the list of award emoji categories'
do
page
.
within
(
'.awards'
)
do
page
.
find
(
'.js-add-award'
).
click
end
page
.
find
(
'.emoji-menu.is-visible'
)
expect
(
page
).
to
have_selector
(
'.js-emoji-menu-search'
)
expect
(
page
.
evaluate_script
(
"document.activeElement.classList.contains('js-emoji-menu-search')"
)).
to
eq
(
true
)
fill_in
(
'emoji-menu-search'
,
with:
'hand'
)
page
.
within
(
'.emoji-menu-content'
)
do
expect
(
page
).
to
have_selector
(
'[data-name="raised_hand"]'
)
end
end
it
'adds an award emoji by a comment'
do
page
.
within
(
'.js-main-target-form'
)
do
fill_in
(
'note[note]'
,
with:
':smile:'
)
click_button
(
'Comment'
)
end
expect
(
page
).
to
have_emoji
(
'smile'
)
end
context
'when a project is archived'
do
let
(
:project
)
{
create
(
:project
,
:archived
)
}
it
'hides the add award button'
do
page
.
within
(
'.awards'
)
do
expect
(
page
).
not_to
have_css
(
'.js-add-award'
)
end
end
end
context
'User interacts with awards on a note'
do
let!
(
:note
)
{
create
(
:note
,
noteable:
issue
,
project:
issue
.
project
)
}
let!
(
:award_emoji
)
{
create
(
:award_emoji
,
awardable:
note
,
name:
'100'
)
}
it
'shows the award on the note'
do
page
.
within
(
'.note-awards'
)
do
expect
(
page
).
to
have_emoji
(
'100'
)
end
end
it
'allows adding a vote to an award'
do
page
.
within
(
'.note-awards'
)
do
find
(
'gl-emoji[data-name="100"]'
).
click
end
wait_for_requests
expect
(
note
.
reload
.
award_emoji
.
size
).
to
eq
(
2
)
end
it
'allows adding a new emoji'
do
page
.
within
(
'.note-actions'
)
do
find
(
'a.js-add-award'
).
click
end
page
.
within
(
'.emoji-menu-content'
)
do
find
(
'gl-emoji[data-name="8ball"]'
).
click
end
wait_for_requests
page
.
within
(
'.note-awards'
)
do
expect
(
page
).
to
have_emoji
(
'8ball'
)
end
expect
(
note
.
reload
.
award_emoji
.
size
).
to
eq
(
2
)
end
context
'when the project is archived'
do
let
(
:project
)
{
create
(
:project
,
:archived
)
}
it
'hides the buttons for adding new emoji'
do
page
.
within
(
'.note-awards'
)
do
expect
(
page
).
not_to
have_css
(
'.award-menu-holder'
)
end
page
.
within
(
'.note-actions'
)
do
expect
(
page
).
not_to
have_css
(
'a.js-add-award'
)
end
end
it
'does not allow toggling existing emoji'
do
page
.
within
(
'.note-awards'
)
do
find
(
'gl-emoji[data-name="100"]'
).
click
end
wait_for_requests
expect
(
note
.
reload
.
award_emoji
.
size
).
to
eq
(
1
)
end
end
end
end
describe
'User interacts with awards on an issue'
,
:js
do
let
(
:project
)
{
create
(
:project
,
:public
)
}
let
(
:issue
)
{
create
(
:issue
,
project:
project
)
}
describe
'logged in'
do
before
do
sign_in
(
user
)
visit
project_issue_path
(
project
,
issue
)
wait_for_requests
end
it
'adds award to issue'
do
first
(
'.js-emoji-btn'
).
click
expect
(
page
).
to
have_selector
(
'.js-emoji-btn.active'
)
expect
(
first
(
'.js-emoji-btn'
)).
to
have_content
'1'
visit
project_issue_path
(
project
,
issue
)
expect
(
first
(
'.js-emoji-btn'
)).
to
have_content
'1'
end
it
'removes award from issue'
do
first
(
'.js-emoji-btn'
).
click
find
(
'.js-emoji-btn.active'
).
click
expect
(
first
(
'.js-emoji-btn'
)).
to
have_content
'0'
visit
project_issue_path
(
project
,
issue
)
expect
(
first
(
'.js-emoji-btn'
)).
to
have_content
'0'
end
it
'only has one menu on the page'
do
first
(
'.js-add-award'
).
click
expect
(
page
).
to
have_selector
(
'.emoji-menu'
,
count:
1
)
end
end
describe
'logged out'
do
before
do
visit
project_issue_path
(
project
,
issue
)
wait_for_requests
end
it
'does not see award menu button'
do
expect
(
page
).
not_to
have_selector
(
'.js-award-holder'
)
end
end
end
describe
'Awards Emoji'
do
let!
(
:project
)
{
create
(
:project
,
:public
)
}
let
(
:issue
)
{
create
(
:issue
,
assignees:
[
user
],
project:
project
)
}
context
'authorized user'
do
before
do
project
.
add_maintainer
(
user
)
sign_in
(
user
)
end
describe
'visiting an issue with a legacy award emoji that is not valid anymore'
do
before
do
# The `heart_tip` emoji is not valid anymore so we need to skip validation
issue
.
award_emoji
.
build
(
user:
user
,
name:
'heart_tip'
).
save!
(
validate:
false
)
visit
project_issue_path
(
project
,
issue
)
wait_for_requests
end
# Regression test: https://gitlab.com/gitlab-org/gitlab-ce/issues/29529
it
'does not shows a 500 page'
,
:js
do
expect
(
page
).
to
have_text
(
issue
.
title
)
end
end
describe
'Click award emoji from issue#show'
do
let!
(
:note
)
{
create
(
:note_on_issue
,
noteable:
issue
,
project:
issue
.
project
,
note:
"Hello world"
)
}
before
do
visit
project_issue_path
(
project
,
issue
)
wait_for_requests
end
context
'click the thumbsdown emoji'
do
it
'increments the thumbsdown emoji'
,
:js
do
find
(
'[data-name="thumbsdown"]'
).
click
wait_for_requests
expect
(
thumbsdown_emoji
).
to
have_text
(
"1"
)
end
it
'decrements the thumbsup emoji'
,
:js
do
expect
(
thumbsup_emoji
).
to
have_text
(
"0"
)
end
end
it
'toggles the smiley emoji on a note'
,
:js
do
toggle_smiley_emoji
(
true
)
within
(
'.note-body'
)
do
expect
(
find
(
emoji_counter
)).
to
have_text
(
"1"
)
end
toggle_smiley_emoji
(
false
)
within
(
'.note-body'
)
do
expect
(
page
).
not_to
have_selector
(
emoji_counter
)
end
end
context
'execute /award quick action'
do
it
'toggles the emoji award on noteable'
,
:js
do
execute_quick_action
(
'/award :100:'
)
expect
(
find
(
noteable_award_counter
)).
to
have_text
(
"1"
)
execute_quick_action
(
'/award :100:'
)
expect
(
page
).
not_to
have_selector
(
noteable_award_counter
)
end
end
end
end
context
'unauthorized user'
,
:js
do
before
do
visit
project_issue_path
(
project
,
issue
)
end
it
'has disabled emoji button'
do
expect
(
first
(
'.award-control'
)[
:class
]).
to
have_text
(
'disabled'
)
end
end
def
execute_quick_action
(
cmd
)
within
(
'.js-main-target-form'
)
do
fill_in
'note[note]'
,
with:
cmd
click_button
'Comment'
end
wait_for_requests
end
def
thumbsup_emoji
page
.
all
(
emoji_counter
).
first
end
def
thumbsdown_emoji
page
.
all
(
emoji_counter
).
last
end
def
emoji_counter
'span.js-counter'
end
def
noteable_award_counter
".awards .active"
end
def
toggle_smiley_emoji
(
status
)
within
(
'.note'
)
do
find
(
'.note-emoji-button'
).
click
end
if
!
status
first
(
'[data-name="smiley"]'
).
click
else
find
(
'[data-name="smiley"]'
).
click
end
wait_for_requests
end
end
end
spec/features/projects/awards/user_interacts_with_awards_in_issue_spec.rb
deleted
100644 → 0
View file @
e6b2e900
require
'spec_helper'
describe
'User interacts with awards in an issue'
,
:js
do
let
(
:issue
)
{
create
(
:issue
,
project:
project
)}
let
(
:project
)
{
create
(
:project
)
}
let
(
:user
)
{
create
(
:user
)
}
before
do
project
.
add_maintainer
(
user
)
sign_in
(
user
)
visit
(
project_issue_path
(
project
,
issue
))
end
it
'toggles the thumbsup award emoji'
do
page
.
within
(
'.awards'
)
do
thumbsup
=
page
.
first
(
'.award-control'
)
thumbsup
.
click
thumbsup
.
hover
expect
(
page
).
to
have_selector
(
'.js-emoji-btn'
)
expect
(
page
).
to
have_css
(
".js-emoji-btn.active[data-original-title='You']"
)
expect
(
page
.
find
(
'.js-emoji-btn.active .js-counter'
)).
to
have_content
(
'1'
)
thumbsup
=
page
.
first
(
'.award-control'
)
thumbsup
.
click
thumbsup
.
hover
expect
(
page
).
to
have_selector
(
'.award-control.js-emoji-btn'
)
expect
(
page
.
all
(
'.award-control.js-emoji-btn'
).
size
).
to
eq
(
2
)
page
.
all
(
'.award-control.js-emoji-btn'
).
each
do
|
element
|
expect
(
element
[
'title'
]).
to
eq
(
''
)
end
page
.
all
(
'.award-control .js-counter'
).
each
do
|
element
|
expect
(
element
).
to
have_content
(
'0'
)
end
thumbsup
=
page
.
first
(
'.award-control'
)
thumbsup
.
click
thumbsup
.
hover
expect
(
page
).
to
have_selector
(
'.js-emoji-btn'
)
expect
(
page
).
to
have_css
(
".js-emoji-btn.active[data-original-title='You']"
)
expect
(
page
.
find
(
'.js-emoji-btn.active .js-counter'
)).
to
have_content
(
'1'
)
end
end
it
'toggles a custom award emoji'
do
page
.
within
(
'.awards'
)
do
page
.
find
(
'.js-add-award'
).
click
end
page
.
find
(
'.emoji-menu.is-visible'
)
expect
(
page
).
to
have_selector
(
'.js-emoji-menu-search'
)
expect
(
page
.
evaluate_script
(
"document.activeElement.classList.contains('js-emoji-menu-search')"
)).
to
eq
(
true
)
page
.
within
(
'.emoji-menu-content'
)
do
emoji_button
=
page
.
first
(
'.js-emoji-btn'
)
emoji_button
.
hover
emoji_button
.
click
end
page
.
within
(
'.awards'
)
do
expect
(
page
).
to
have_selector
(
'.js-emoji-btn'
)
expect
(
page
.
find
(
'.js-emoji-btn.active .js-counter'
)).
to
have_content
(
'1'
)
expect
(
page
).
to
have_css
(
".js-emoji-btn.active[data-original-title='You']"
)
expect
do
page
.
find
(
'.js-emoji-btn.active'
).
click
wait_for_requests
end
.
to
change
{
page
.
all
(
'.award-control.js-emoji-btn'
).
size
}.
from
(
3
).
to
(
2
)
end
end
it
'shows the list of award emoji categories'
do
page
.
within
(
'.awards'
)
do
page
.
find
(
'.js-add-award'
).
click
end
page
.
find
(
'.emoji-menu.is-visible'
)
expect
(
page
).
to
have_selector
(
'.js-emoji-menu-search'
)
expect
(
page
.
evaluate_script
(
"document.activeElement.classList.contains('js-emoji-menu-search')"
)).
to
eq
(
true
)
fill_in
(
'emoji-menu-search'
,
with:
'hand'
)
page
.
within
(
'.emoji-menu-content'
)
do
expect
(
page
).
to
have_selector
(
'[data-name="raised_hand"]'
)
end
end
it
'adds an award emoji by a comment'
do
page
.
within
(
'.js-main-target-form'
)
do
fill_in
(
'note[note]'
,
with:
':smile:'
)
click_button
(
'Comment'
)
end
expect
(
page
).
to
have_emoji
(
'smile'
)
end
context
'when a project is archived'
do
let
(
:project
)
{
create
(
:project
,
:archived
)
}
it
'hides the add award button'
do
page
.
within
(
'.awards'
)
do
expect
(
page
).
not_to
have_css
(
'.js-add-award'
)
end
end
end
context
'awards on a note'
do
let!
(
:note
)
{
create
(
:note
,
noteable:
issue
,
project:
issue
.
project
)
}
let!
(
:award_emoji
)
{
create
(
:award_emoji
,
awardable:
note
,
name:
'100'
)
}
it
'shows the award on the note'
do
page
.
within
(
'.note-awards'
)
do
expect
(
page
).
to
have_emoji
(
'100'
)
end
end
it
'allows adding a vote to an award'
do
page
.
within
(
'.note-awards'
)
do
find
(
'gl-emoji[data-name="100"]'
).
click
end
wait_for_requests
expect
(
note
.
reload
.
award_emoji
.
size
).
to
eq
(
2
)
end
it
'allows adding a new emoji'
do
page
.
within
(
'.note-actions'
)
do
find
(
'a.js-add-award'
).
click
end
page
.
within
(
'.emoji-menu-content'
)
do
find
(
'gl-emoji[data-name="8ball"]'
).
click
end
wait_for_requests
page
.
within
(
'.note-awards'
)
do
expect
(
page
).
to
have_emoji
(
'8ball'
)
end
expect
(
note
.
reload
.
award_emoji
.
size
).
to
eq
(
2
)
end
context
'when the project is archived'
do
let
(
:project
)
{
create
(
:project
,
:archived
)
}
it
'hides the buttons for adding new emoji'
do
page
.
within
(
'.note-awards'
)
do
expect
(
page
).
not_to
have_css
(
'.award-menu-holder'
)
end
page
.
within
(
'.note-actions'
)
do
expect
(
page
).
not_to
have_css
(
'a.js-add-award'
)
end
end
it
'does not allow toggling existing emoji'
do
page
.
within
(
'.note-awards'
)
do
find
(
'gl-emoji[data-name="100"]'
).
click
end
wait_for_requests
expect
(
note
.
reload
.
award_emoji
.
size
).
to
eq
(
1
)
end
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment