Simon Priet 9e2991e668 init
2021-09-05 22:53:58 +02:00

8 lines
217 B
JavaScript

var f = require('./f.js');
var m = require('m');
var g = require('g');
t.equal(m(f(AAA)), 555, 'transformation scope');
t.equal(g(3), 333, 'sub-transformation applied');
t.equal(typeof GGG, 'undefined', 'GGG leak');