Upgrade to qunit-extras 2.0.

This commit is contained in:
John-David Dalton
2016-04-30 11:59:06 -07:00
parent 7ee4bf8d02
commit 963e2c23b0
3 changed files with 12 additions and 32 deletions

View File

@@ -300,10 +300,10 @@
? require
: noop;
/** The unit testing framework. */
var QUnit = root.QUnit || (root.QUnit = load('../node_modules/qunitjs/qunit/qunit.js'));
/** Load QUnit and extras. */
var QUnit = root.QUnit || load('qunit-extras');
/** Load stable Lodash and QUnit Extras. */
/** Load stable Lodash. */
var lodashStable = root.lodashStable;
if (!lodashStable) {
try {
@@ -316,11 +316,6 @@
}
lodashStable = lodashStable.runInContext(root);
var QUnitExtras = load('../node_modules/qunit-extras/qunit-extras.js');
if (QUnitExtras) {
QUnitExtras.runInContext(root);
}
/** The `lodash` function to test. */
var _ = root._ || (root._ = (
_ = load(filePath),