The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
19 lines
522 B
JavaScript
19 lines
522 B
JavaScript
var assert = require('assert');
|
|
var spawn = require('child_process').spawn;
|
|
|
|
if (process.argv[2] === 'child') {
|
|
process.stdout.write(JSON.stringify(process.execArgv));
|
|
} else {
|
|
var execArgv = ['--harmony_proxies', '--stack-size=256'];
|
|
var args = [__filename, 'child', 'arg0'];
|
|
var child = spawn(process.execPath, execArgv.concat(args));
|
|
var out = '';
|
|
|
|
child.stdout.on('data', function (chunk) {
|
|
out += chunk;
|
|
});
|
|
|
|
child.on('exit', function () {
|
|
assert.deepEqual(JSON.parse(out), execArgv);
|
|
});
|
|
}
|