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