Turn off jQuery animations when testing

remotes/origin/open-menus-on-hover
Christoph Wurst 8 years ago
parent 3e1f1ccc76
commit 5900e46f01
No known key found for this signature in database
GPG Key ID: FEECD2543CA6EAF0

@ -470,6 +470,7 @@ describe('Core base tests', function() {
var $navigation;
beforeEach(function() {
jQuery.fx.off = true;
clock = sinon.useFakeTimers();
$('#testArea').append('<div id="header">' +
'<a class="menutoggle header-appname-container" href="#">' +
@ -482,6 +483,7 @@ describe('Core base tests', function() {
$navigation = $('#navigation');
});
afterEach(function() {
jQuery.fx.off = false;
clock.restore();
$(document).off('ajaxError');
});

Loading…
Cancel
Save