Skip to content

Commit

Permalink
test: Fix flaky test on IE (#606)
Browse files Browse the repository at this point in the history
  • Loading branch information
FezVrasta committed Apr 8, 2018
1 parent 74c011f commit 109ebd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/tooltip/tests/functional/tooltip.js
Expand Up @@ -308,7 +308,7 @@ describe('[tooltip.js]', () => {
el.textContent = updatedContent;
instance = new Tooltip(reference, {
title: 'Constructor message',
html: true,
html: true,
});

instance.show();
Expand Down Expand Up @@ -340,7 +340,7 @@ describe('[tooltip.js]', () => {
document.querySelector('.tooltip .tooltip-inner').getBoundingClientRect().left
).not.toBe(oldPosition);
done();
})
}, 500)
});
});

Expand Down

0 comments on commit 109ebd1

Please sign in to comment.