diff options
author | Filipa Lacerda <filipa@gitlab.com> | 2017-02-25 21:30:38 +0000 |
---|---|---|
committer | Filipa Lacerda <filipa@gitlab.com> | 2017-02-25 21:35:10 +0000 |
commit | 3ef300d1f369a955550aa407944f4f4e9dcf1c88 (patch) | |
tree | 5cf66006eeb6e0eb63a1ea372480500ce65d9fda /spec | |
parent | 442a268f8d818b3ee977622637ed4511f0127dbf (diff) | |
download | gitlab-ce-3ef300d1f369a955550aa407944f4f4e9dcf1c88.tar.gz |
Remove unused test
Diffstat (limited to 'spec')
-rw-r--r-- | spec/javascripts/environments/environment_actions_spec.js.es6 | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/spec/javascripts/environments/environment_actions_spec.js.es6 b/spec/javascripts/environments/environment_actions_spec.js.es6 index 850586f9f3a..d50d45d295e 100644 --- a/spec/javascripts/environments/environment_actions_spec.js.es6 +++ b/spec/javascripts/environments/environment_actions_spec.js.es6 @@ -23,7 +23,6 @@ describe('Actions Component', () => { el: document.querySelector('.test-dom-element'), propsData: { actions: actionsMock, - playIconSvg: '<svg></svg>', }, }); @@ -34,33 +33,4 @@ describe('Actions Component', () => { component.$el.querySelector('.dropdown-menu li a').getAttribute('href'), ).toEqual(actionsMock[0].play_path); }); - - it('should render a dropdown with the provided svg', () => { - const actionsMock = [ - { - name: 'bar', - play_path: 'https://gitlab.com/play', - }, - { - name: 'foo', - play_path: '#', - }, - ]; - - const component = new ActionsComponent({ - el: document.querySelector('.test-dom-element'), - propsData: { - actions: actionsMock, - playIconSvg: '<svg></svg>', - }, - }); - - expect( - component.$el.querySelector('.js-dropdown-play-icon-container').children, - ).toContain('svg'); - - expect( - component.$el.querySelector('.js-action-play-icon-container').children, - ).toContain('svg'); - }); }); |