Rework the testrunner to pass the input filename only.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
(function (global, factory) {
|
||||
if (typeof define === "function" && define.amd) {
|
||||
define("loose/module-name-with-overridden-global/output", ["exports"], factory);
|
||||
define("loose/module-name-with-overridden-global/input", ["exports"], factory);
|
||||
} else if (typeof exports !== "undefined") {
|
||||
factory(exports);
|
||||
} else {
|
||||
@@ -8,7 +8,7 @@
|
||||
exports: {}
|
||||
};
|
||||
factory(mod.exports);
|
||||
global.looseModuleNameWithOverriddenGlobalOutput = mod.exports;
|
||||
global.looseModuleNameWithOverriddenGlobalInput = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
(function (global, factory) {
|
||||
if (typeof define === "function" && define.amd) {
|
||||
define("loose/module-name/output", [], factory);
|
||||
define("loose/module-name/input", [], factory);
|
||||
} else if (typeof exports !== "undefined") {
|
||||
factory();
|
||||
} else {
|
||||
@@ -8,7 +8,7 @@
|
||||
exports: {}
|
||||
};
|
||||
factory();
|
||||
global.looseModuleNameOutput = mod.exports;
|
||||
global.looseModuleNameInput = mod.exports;
|
||||
}
|
||||
})(this, function () {
|
||||
"use strict";
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
(function (global, factory) {
|
||||
if (typeof define === "function" && define.amd) {
|
||||
define("umd/module-name-with-overridden-global/output", ["exports"], factory);
|
||||
define("umd/module-name-with-overridden-global/input", ["exports"], factory);
|
||||
} else if (typeof exports !== "undefined") {
|
||||
factory(exports);
|
||||
} else {
|
||||
@@ -8,7 +8,7 @@
|
||||
exports: {}
|
||||
};
|
||||
factory(mod.exports);
|
||||
global.umdModuleNameWithOverriddenGlobalOutput = mod.exports;
|
||||
global.umdModuleNameWithOverriddenGlobalInput = mod.exports;
|
||||
}
|
||||
})(this, function (_exports) {
|
||||
"use strict";
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
(function (global, factory) {
|
||||
if (typeof define === "function" && define.amd) {
|
||||
define("umd/module-name/output", [], factory);
|
||||
define("umd/module-name/input", [], factory);
|
||||
} else if (typeof exports !== "undefined") {
|
||||
factory();
|
||||
} else {
|
||||
@@ -8,7 +8,7 @@
|
||||
exports: {}
|
||||
};
|
||||
factory();
|
||||
global.umdModuleNameOutput = mod.exports;
|
||||
global.umdModuleNameInput = mod.exports;
|
||||
}
|
||||
})(this, function () {
|
||||
"use strict";
|
||||
|
||||
Reference in New Issue
Block a user