remove helpText test from radio_group_spec.js

This commit is contained in:
Phil Hughes 2018-04-17 10:34:12 +00:00
parent bcb5725d9a
commit f50c69775a

View file

@ -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();