node/test/parallel/test-release-npm.js
RafaelGSS e67b94416f test: remove unnecessary status check on test-release-npm
Signed-off-by: RafaelGSS <rafael.nunu@hotmail.com>
PR-URL: https://github.com/nodejs/node/pull/47516
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
2023-04-12 21:18:09 -03:00

25 lines
770 B
JavaScript

'use strict';
const common = require('../common');
const assert = require('assert');
const child_process = require('child_process');
const path = require('path');
const releaseReg = /^v\d+\.\d+\.\d+$/;
// Npm requires crypto support.
if (!releaseReg.test(process.version) || !common.hasCrypto) {
common.skip('This test is only for release builds');
}
{
// Verify that npm does not print out a warning when executed.
const npmCli = path.join(__dirname, '../../deps/npm/bin/npm-cli.js');
const npmExec = child_process.spawnSync(process.execPath, [npmCli]);
const stderr = npmExec.stderr.toString();
assert.strictEqual(stderr.length, 0, 'npm is not ready for this release ' +
'and is going to print warnings to users:\n' + stderr);
}