mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-25 14:57:38 +00:00
7 lines
203 B
JavaScript
7 lines
203 B
JavaScript
define(["require", "exports", "module", "test","a"], function(require, exports, module) {
|
|
var test = require('test');
|
|
test.assert(require('a').foo() == 1, 'transitive');
|
|
test.print('DONE', 'info');
|
|
|
|
});
|