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

View File

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

View File

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

View File

@ -19,5 +19,5 @@
exports.test = test;
var test = exports.test = 5;
exports["default"] = test;
exports = test;
});