You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
typesetting/pitfall/pdfkit/node_modules/browserify/test/tr/main.js

10 lines
276 B
JavaScript

7 years ago
var f = require('./f.js');
var m = require('m');
var g = require('g');
t.equal(require('./subdir/g.js'), 999);
t.equal(m(f(AAA)), 555, 'transformation scope');
t.equal(g(3), 332, 'sub-transformation applied');
t.equal(typeof GGG, 'undefined', 'GGG leak');
t.equal(XYZ, 909);