summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorKushal Pandya <kushal@gitlab.com>2018-08-07 18:00:08 +0530
committerKushal Pandya <kushal@gitlab.com>2018-08-07 19:05:38 +0530
commitf0c60bdccc8b794601cd821a412d972079235f22 (patch)
tree97dd98415b7157b2e0f41aa67b96ec385d26c030 /spec
parentf996f7e006b206ad6505dd1edd740fa142dbcb21 (diff)
downloadgitlab-ce-f0c60bdccc8b794601cd821a412d972079235f22.tar.gz
Add `tabindex` attribute support to show BS4 popover on trigger `focus`
Diffstat (limited to 'spec')
-rw-r--r--spec/javascripts/vue_shared/components/icon_spec.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/spec/javascripts/vue_shared/components/icon_spec.js b/spec/javascripts/vue_shared/components/icon_spec.js
index 882420e602e..01f4649339e 100644
--- a/spec/javascripts/vue_shared/components/icon_spec.js
+++ b/spec/javascripts/vue_shared/components/icon_spec.js
@@ -13,6 +13,7 @@ describe('Sprite Icon Component', function () {
name: 'commit',
size: 32,
cssClasses: 'extraclasses',
+ tabIndex: '0',
});
});
@@ -58,5 +59,9 @@ describe('Sprite Icon Component', function () {
it('`name` validator should return false for existing icons', () => {
expect(Icon.props.name.validator('commit')).toBe(true);
});
+
+ it('should contain `tabindex` attribute on svg element when `tabIndex` prop is defined', () => {
+ expect(icon.$el.getAttribute('tabindex')).toBe('0');
+ });
});
});