Commit 7fd79e61 authored by Tim Zallmann's avatar Tim Zallmann

Prettified + added Changelog

parent c76ce5df
---
title: Resolve [Broken master] Karma failure - Should Show+Hide Popover on mouseenter
and mouseleave
merge_request: 9021
author:
type: fixed
......@@ -30,8 +30,8 @@ describe('User Popovers', () => {
});
it('Should Show+Hide Popover on mouseenter and mouseleave', done => {
const targetLink = document.querySelector(selector)
const { userId } = target.dataset;
const targetLink = document.querySelector(selector);
const { userId } = targetLink.dataset;
triggerEvent('mouseenter', targetLink);
setTimeout(() => {
......@@ -53,8 +53,8 @@ describe('User Popovers', () => {
});
it('Should Not show a popover on short mouse over', done => {
const targetLink = document.querySelector(selector)
const { userId } = target.dataset;
const targetLink = document.querySelector(selector);
const { userId } = targetLink.dataset;
triggerEvent('mouseenter', targetLink);
setTimeout(() => {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment