summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2015-12-16 13:07:06 +0000
committerDouwe Maan <douwe@gitlab.com>2015-12-16 13:07:06 +0000
commit8e9f740d0813ddb3d37ba29be90e02d76130ca44 (patch)
tree176e9ea01e06e4491e0c23bbe1a4d121ff1a9c8c /spec
parent37a4e4945d0cc944bc34f3ff3396ff7932d4aba0 (diff)
parent456ddb5eb7f905899bd1a6258617eb505f4dc289 (diff)
downloadgitlab-ce-8e9f740d0813ddb3d37ba29be90e02d76130ca44.tar.gz
Merge branch 'rs-timeago' into 'master'
Fix time_ago_with_tooltip for activity feed Closes #4002 See merge request !2074
Diffstat (limited to 'spec')
-rw-r--r--spec/helpers/application_helper_spec.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/spec/helpers/application_helper_spec.rb b/spec/helpers/application_helper_spec.rb
index 5568f06639c..68527c3a4f8 100644
--- a/spec/helpers/application_helper_spec.rb
+++ b/spec/helpers/application_helper_spec.rb
@@ -263,11 +263,12 @@ describe ApplicationHelper do
end
it 'includes a default js-timeago class' do
- expect(element.attr('class')).to eq 'time_ago js-timeago'
+ expect(element.attr('class')).to eq 'time_ago js-timeago js-timeago-pending'
end
it 'accepts a custom html_class' do
- expect(element(html_class: 'custom_class').attr('class')).to eq 'custom_class js-timeago'
+ expect(element(html_class: 'custom_class').attr('class')).
+ to eq 'custom_class js-timeago js-timeago-pending'
end
it 'accepts a custom tooltip placement' do
@@ -278,7 +279,7 @@ describe ApplicationHelper do
el = element.next_element
expect(el.name).to eq 'script'
- expect(el.text).to include "$('.js-timeago').last().timeago()"
+ expect(el.text).to include "$('.js-timeago-pending').removeClass('js-timeago-pending').timeago()"
end
it 'allows the script tag to be excluded' do