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/lexical-scope/test/shebang.js

20 lines
507 B
JavaScript

var test = require('tape');
var detect = require('../');
var fs = require('fs');
var src = '#!/beep/boop blah\n'
+ fs.readFileSync(__dirname + '/files/detect.js')
;
test('shebangs', function (t) {
t.plan(3);
var scope = detect(src);
t.same(scope.globals.implicit, [
'w', 'foo', 'process', 'console', 'AAA', 'BBB', 'CCC', 'xyz'
]);
t.same(scope.globals.exported, [
'w', 'RAWR', 'BLARG', 'ZZZ'
]);
t.same(scope.locals[''], [ 'x', 'y', 'z', 'beep' ]);
});