Modify test expectations
This commit is contained in:
parent
05669204dd
commit
61c3e0a3de
@ -1,17 +1,17 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
define(["exports"], function (exports) {
|
define(["exports"], function (exports) {
|
||||||
exports["default"] = foo;
|
exports = foo;
|
||||||
exports["default"] = 42;
|
exports = 42;
|
||||||
exports["default"] = {};
|
exports = {};
|
||||||
exports["default"] = [];
|
exports = [];
|
||||||
exports["default"] = foo;
|
exports = foo;
|
||||||
exports["default"] = function () {};
|
exports = function () {};
|
||||||
|
|
||||||
exports["default"] = function () {};
|
exports = function () {};
|
||||||
|
|
||||||
function foo() {}
|
function foo() {}
|
||||||
var Foo = function Foo() {};
|
var Foo = function Foo() {};
|
||||||
|
|
||||||
exports["default"] = Foo;
|
exports = Foo;
|
||||||
});
|
});
|
||||||
|
|||||||
@ -13,5 +13,5 @@ define(["exports", "foo", "foo-bar", "./directory/foo-bar"], function (exports,
|
|||||||
exports.test = test;
|
exports.test = test;
|
||||||
var test = exports.test = 5;
|
var test = exports.test = 5;
|
||||||
|
|
||||||
exports["default"] = test;
|
exports = test;
|
||||||
});
|
});
|
||||||
|
|||||||
@ -7,17 +7,17 @@
|
|||||||
factory(exports);
|
factory(exports);
|
||||||
}
|
}
|
||||||
})(function (exports) {
|
})(function (exports) {
|
||||||
exports["default"] = foo;
|
exports = foo;
|
||||||
exports["default"] = 42;
|
exports = 42;
|
||||||
exports["default"] = {};
|
exports = {};
|
||||||
exports["default"] = [];
|
exports = [];
|
||||||
exports["default"] = foo;
|
exports = foo;
|
||||||
exports["default"] = function () {};
|
exports = function () {};
|
||||||
|
|
||||||
exports["default"] = function () {};
|
exports = function () {};
|
||||||
|
|
||||||
function foo() {}
|
function foo() {}
|
||||||
var Foo = function Foo() {};
|
var Foo = function Foo() {};
|
||||||
|
|
||||||
exports["default"] = Foo;
|
exports = Foo;
|
||||||
});
|
});
|
||||||
|
|||||||
@ -19,5 +19,5 @@
|
|||||||
exports.test = test;
|
exports.test = test;
|
||||||
var test = exports.test = 5;
|
var test = exports.test = 5;
|
||||||
|
|
||||||
exports["default"] = test;
|
exports = test;
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user