mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 19:08:17 +00:00

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>
30 lines
695 B
JavaScript
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));
|
|
});
|