0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 07:27:22 +01:00
nodejs/test/sequential/test-vm-timeout-rethrow.js
Gibson Fahnestock 7a0e462f9f test: use eslint to fix var->const/let
Manually fix issues that eslint --fix couldn't do automatically.

PR-URL: https://github.com/nodejs/node/pull/10685
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Roman Reiss <me@silverwind.io>
2017-01-11 11:43:52 +00:00

30 lines
712 B
JavaScript

'use strict';
require('../common');
const assert = require('assert');
const vm = require('vm');
const spawn = require('child_process').spawn;
if (process.argv[2] === 'child') {
const code = 'let j = 0;\n' +
'for (let i = 0; i < 1000000; i++) j += add(i, i + 1);\n' +
'j;';
const ctx = vm.createContext({
add: function(x, y) {
return x + y;
}
});
vm.runInContext(code, ctx, { timeout: 1 });
} else {
const proc = spawn(process.execPath, process.argv.slice(1).concat('child'));
let err = '';
proc.stderr.on('data', function(data) {
err += data;
});
process.on('exit', function() {
assert.ok(/Script execution timed out/.test(err));
});
}