diff options
Diffstat (limited to 'test/tests/es6-loading-amd.js')
-rw-r--r-- | test/tests/es6-loading-amd.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/tests/es6-loading-amd.js b/test/tests/es6-loading-amd.js new file mode 100644 index 000000000..565fdd416 --- /dev/null +++ b/test/tests/es6-loading-amd.js @@ -0,0 +1,9 @@ +System.register(["./es6-loading-amd-dep.js"], function($__export) { + "use strict"; + return { + setters: [function(m) { + $__export("amd", m.default); + }], + execute: function() {} + }; +}); |