Skip to content

Commit

Permalink
Using node-qunit port, the start/stop function are not exposed so we …
Browse files Browse the repository at this point in the history
…need to prefix any call to them with 'QUnit'. Aka: start() -> QUnit.start()
  • Loading branch information
hashar committed Oct 19, 2011
1 parent c288e42 commit bd6a75e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qunit/qunit.js
Expand Up @@ -112,7 +112,7 @@ Test.prototype = {

// Restart the tests if they're blocking
if ( config.blocking ) {
start();
QUnit.start();
}
}
},
Expand Down

0 comments on commit bd6a75e

Please sign in to comment.