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