UNPKG

276 BJavaScriptView Raw
1var f = require('./f.js');
2var m = require('m');
3var g = require('g');
4t.equal(require('./subdir/g.js'), 999);
5
6t.equal(m(f(AAA)), 555, 'transformation scope');
7t.equal(g(3), 332, 'sub-transformation applied');
8t.equal(typeof GGG, 'undefined', 'GGG leak');
9t.equal(XYZ, 909);