diff options
author | Filipa Lacerda <filipa@gitlab.com> | 2017-06-13 15:27:42 +0100 |
---|---|---|
committer | Filipa Lacerda <filipa@gitlab.com> | 2017-06-13 15:33:57 +0100 |
commit | aeabd307ba819a96c27b756ba7bb1e3089354500 (patch) | |
tree | 0bfb68446aab3fc75a98af5a2b8a726dae6b6694 /spec | |
parent | 0d499ce215b8ce4623349c4b00311c810f83c77c (diff) | |
download | gitlab-ce-aeabd307ba819a96c27b756ba7bb1e3089354500.tar.gz |
Remove js classes from vue component that are not needed in vue component33642-timeago-update
Diffstat (limited to 'spec')
-rw-r--r-- | spec/javascripts/vue_shared/components/time_ago_tooltip_spec.js | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/spec/javascripts/vue_shared/components/time_ago_tooltip_spec.js b/spec/javascripts/vue_shared/components/time_ago_tooltip_spec.js index bf28019ef24..f3b4adc0b70 100644 --- a/spec/javascripts/vue_shared/components/time_ago_tooltip_spec.js +++ b/spec/javascripts/vue_shared/components/time_ago_tooltip_spec.js @@ -22,7 +22,7 @@ describe('Time ago with tooltip component', () => { }).$mount(); expect(vm.$el.tagName).toEqual('TIME'); - expect(vm.$el.classList.contains('js-timeago')).toEqual(true); + expect(vm.$el.classList.contains('js-vue-timeago')).toEqual(true); expect( vm.$el.getAttribute('data-original-title'), ).toEqual(gl.utils.formatDate('2017-05-08T14:57:39.781Z')); @@ -44,17 +44,6 @@ describe('Time ago with tooltip component', () => { expect(vm.$el.getAttribute('data-placement')).toEqual('bottom'); }); - it('should render short format class', () => { - vm = new TimeagoTooltip({ - propsData: { - time: '2017-05-08T14:57:39.781Z', - shortFormat: true, - }, - }).$mount(); - - expect(vm.$el.classList.contains('js-short-timeago')).toEqual(true); - }); - it('should render provided html class', () => { vm = new TimeagoTooltip({ propsData: { |