fix qunit-fixture empty to call destroyed event and hide container

This commit is contained in:
vitalets 2013-08-07 12:13:26 +04:00
parent 969c38b8d1
commit 0626d63db9

@ -27,6 +27,12 @@ require(["loader", jqurl], function(loader) {
$.support.transition = false;
$.fn.editable.defaults.mode = params.c === 'inline' ? 'inline' : 'popup';
//for some reason qunit's empty of fixture does not call element's `destryed` event
//and container remains open
QUnit.testDone(function( details ) {
$('#qunit-fixture').empty();
});
QUnit.load();
QUnit.start();
});
@ -89,4 +95,4 @@ JSON.stringify = JSON.stringify || function (obj) {
}
return (arr ? "[" : "{") + String(json) + (arr ? "]" : "}");
}
};
};