Fix regression in CLI test runner for Narwhal, Rhino, and RingoJS.

Former-commit-id: e58807535bc42f1922b4484caeb336d7a9da5aaf
This commit is contained in:
John-David Dalton
2012-05-20 19:11:36 -04:00
parent 88327aeba2
commit a9d55121bb
3 changed files with 8 additions and 3 deletions

View File

@@ -53,7 +53,7 @@
/*--------------------------------------------------------------------------*/
// must explicitly use `QUnit.module` instead of `module()`
// explicitly call `QUnit.module()` instead of `module()`
// in case we are in a CLI environment
QUnit.module('lodash');
@@ -456,4 +456,9 @@
});
}());
/*--------------------------------------------------------------------------*/
// explicitly call `QUnit.start()` for Narwhal, Rhino, and RingoJS
QUnit.start();
}(typeof global == 'object' && global || this));