diff options
author | Phil Hughes <me@iamphill.com> | 2018-04-17 10:34:12 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2018-04-17 10:34:12 +0000 |
commit | f50c69775a7d5843a64d21d544f4fa1aa97fc161 (patch) | |
tree | 9963be9a71de02fa13df03fb75de7de3f4d0aea6 /spec | |
parent | bcb5725d9aa4fdbbf4fdad266c72a2078fa336b5 (diff) | |
download | gitlab-ce-f50c69775a7d5843a64d21d544f4fa1aa97fc161.tar.gz |
remove helpText test from radio_group_spec.js
Diffstat (limited to 'spec')
-rw-r--r-- | spec/javascripts/ide/components/commit_sidebar/radio_group_spec.js | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/spec/javascripts/ide/components/commit_sidebar/radio_group_spec.js b/spec/javascripts/ide/components/commit_sidebar/radio_group_spec.js index 4e8243439f3..21bfe4be52f 100644 --- a/spec/javascripts/ide/components/commit_sidebar/radio_group_spec.js +++ b/spec/javascripts/ide/components/commit_sidebar/radio_group_spec.js @@ -69,19 +69,6 @@ describe('IDE commit sidebar radio group', () => { }); }); - it('renders helpText tooltip', done => { - vm.helpText = 'help text'; - - Vue.nextTick(() => { - const help = vm.$el.querySelector('.help-block'); - - expect(help).not.toBeNull(); - expect(help.getAttribute('data-original-title')).toBe('help text'); - - done(); - }); - }); - describe('with input', () => { beforeEach(done => { vm.$destroy(); |