node/test/parallel/test-eval.js
Pavol Otcenas 070efb57f7 test: update test/parallel/test-eval.js
Changed var -> const and assert.equal -> assert.strictEqual

PR-URL: https://github.com/nodejs/node/pull/8590
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2016-09-22 10:23:20 -07:00

14 lines
477 B
JavaScript

'use strict';
const common = require('../common');
const util = require('util');
const assert = require('assert');
const exec = require('child_process').exec;
const cmd = ['"' + process.execPath + '"', '-e',
'"console.error(process.argv)"', 'foo', 'bar'].join(' ');
const expected = util.format([process.execPath, 'foo', 'bar']) + '\n';
exec(cmd, common.mustCall(function(err, stdout, stderr) {
assert.ifError(err);
assert.strictEqual(stderr, expected);
}));