systemjs/test/tests/package-local-alias/index-default-cjs.js
Artem Khodyush 93a4f84662 add tests for package-local alias with default export (cjs one fails)
also, change two tests added earlier to make loader configuration unique for each test -
I did not notice at the time that results of System.config() persist across tests
2015-11-29 08:37:09 -08:00

11 lines
191 B
JavaScript

var local = require('./local-default-cjs');
exports.q = 'q';
exports.fromLocal = local;
var localDirect = require('./local/index-default-cjs.js');
exports.fromLocalDirect = localDirect;