aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/meta-deps.js
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/systemjs/test/tests/meta-deps.js')
-rw-r--r--thirdparty/systemjs/test/tests/meta-deps.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/thirdparty/systemjs/test/tests/meta-deps.js b/thirdparty/systemjs/test/tests/meta-deps.js
deleted file mode 100644
index 6bf3b4520..000000000
--- a/thirdparty/systemjs/test/tests/meta-deps.js
+++ /dev/null
@@ -1,21 +0,0 @@
-(function(global) {
-
-System.config({
- meta: {
- b: {
- deps: ['a']
- }
- }
-});
-
-define('a', [], function() {
- global.MODULEA = 'a';
-});
-
-define('b', [], function() {
- return {
- a: global.MODULEA
- };
-});
-
-})(typeof window == 'undefined' ? global : window); \ No newline at end of file