aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/package-local-alias/index-default-cjs.js
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/systemjs/test/tests/package-local-alias/index-default-cjs.js')
-rw-r--r--thirdparty/systemjs/test/tests/package-local-alias/index-default-cjs.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/thirdparty/systemjs/test/tests/package-local-alias/index-default-cjs.js b/thirdparty/systemjs/test/tests/package-local-alias/index-default-cjs.js
new file mode 100644
index 000000000..d0a59da14
--- /dev/null
+++ b/thirdparty/systemjs/test/tests/package-local-alias/index-default-cjs.js
@@ -0,0 +1,10 @@
+
+var local = require('./local-default-cjs');
+
+exports.q = 'q';
+
+exports.fromLocal = local;
+
+var localDirect = require('./local/index-default-cjs.js');
+
+exports.fromLocalDirect = localDirect;