aboutsummaryrefslogtreecommitdiffstats
path: root/test/data/testinit.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/data/testinit.js')
-rw-r--r--test/data/testinit.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/data/testinit.js b/test/data/testinit.js
index 70c9bbd5a..40ac02114 100644
--- a/test/data/testinit.js
+++ b/test/data/testinit.js
@@ -232,15 +232,15 @@ this.ajaxTest = function( title, expect, options ) {
} );
};
-this.testIframeWithCallback = function( title, fileName, func ) {
- QUnit.test( title, 1, function( assert ) {
+this.testIframe = function( title, fileName, func ) {
+ QUnit.test( title, function( assert ) {
var iframe;
var done = assert.async();
window.iframeCallback = function() {
var args = Array.prototype.slice.call( arguments );
- args.push( assert );
+ args.unshift( assert );
setTimeout( function() {
this.iframeCallback = undefined;
@@ -248,7 +248,6 @@ this.testIframeWithCallback = function( title, fileName, func ) {
func.apply( this, args );
func = function() {};
iframe.remove();
-
done();
} );
};