Modify test expectations

This commit is contained in:
Lars Kappert 2015-01-04 11:45:09 +01:00
parent 05669204dd
commit 61c3e0a3de
4 changed files with 18 additions and 18 deletions

View File

@ -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;
}); });

View File

@ -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;
}); });

View File

@ -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;
}); });

View File

@ -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;
}); });