node/test/parallel/test-vm-syntax-error-stderr.js
Jay Brownlee fa228547d3 test: refactor test-vm-syntax-error-stderr.js
use common.fail instead of assert(false)
change var to let or const as appropriate

PR-URL: https://github.com/nodejs/node/pull/9900
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
2016-12-04 18:57:56 -08:00

30 lines
695 B
JavaScript

'use strict';
const common = require('../common');
const assert = require('assert');
const path = require('path');
const child_process = require('child_process');
const wrong_script = path.join(common.fixturesDir, 'cert.pem');
const p = child_process.spawn(process.execPath, [
'-e',
'require(process.argv[1]);',
wrong_script
]);
p.stdout.on('data', function(data) {
common.fail('Unexpected stdout data: ' + data);
});
let output = '';
p.stderr.on('data', function(data) {
output += data;
});
process.on('exit', function() {
assert(/BEGIN CERT/.test(output));
assert(/^\s+\^/m.test(output));
assert(/Invalid left-hand side expression in prefix operation/.test(output));
});