File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/components/tooltip/helpers Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -77,20 +77,20 @@ export const BVTooltipTemplate = /*#__PURE__*/ Vue.extend({
77
77
templateListeners ( ) {
78
78
// Used for hover/focus trigger listeners
79
79
return {
80
- /* istanbul ignore next */
81
80
mouseenter : event => {
81
+ /* istanbul ignore next: difficult to test in JSDOM */
82
82
this . $emit ( EVENT_NAME_MOUSEENTER , event )
83
83
} ,
84
- /* istanbul ignore next */
85
84
mouseleave : event => {
85
+ /* istanbul ignore next: difficult to test in JSDOM */
86
86
this . $emit ( EVENT_NAME_MOUSELEAVE , event )
87
87
} ,
88
- /* istanbul ignore next */
89
88
focusin : event => {
89
+ /* istanbul ignore next: difficult to test in JSDOM */
90
90
this . $emit ( EVENT_NAME_FOCUSIN , event )
91
91
} ,
92
-
93
92
focusout : event => {
93
+ /* istanbul ignore next: difficult to test in JSDOM */
94
94
this . $emit ( EVENT_NAME_FOCUSOUT , event )
95
95
}
96
96
}
You can’t perform that action at this time.
0 commit comments