diff --git a/tests/jquery.testHelper.js b/tests/jquery.testHelper.js index 2f66fa36..5e60cf5a 100644 --- a/tests/jquery.testHelper.js +++ b/tests/jquery.testHelper.js @@ -14,7 +14,13 @@ function loadSeq( seq, i ){ if( !seq[i] ){ - QUnit.start(); + $( document ).ready( function() { + var $fixture = $( '#qunit-fixture' ); + if ( $fixture.length ) { + QUnit.config.fixture = $fixture.html(); + } + QUnit.start(); + }); return; }