Skip to content

Commit

Permalink
test: verify npm compatibility with releases
Browse files Browse the repository at this point in the history
This adds a test that makes sure than running `npm` from a release does
not print warnings to the console.

PR-URL: #30082
Reviewed-By: Jiawen Geng <[email protected]>
Reviewed-By: Gireesh Punathil <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Beth Griggs <[email protected]>
Reviewed-By: Yongsheng Zhang <[email protected]>
Reviewed-By: Trivikram Kamat <[email protected]>
Reviewed-By: Richard Lau <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
  • Loading branch information
targos committed Oct 28, 2019
1 parent 1cfa98c commit a03809d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions test/parallel/test-release-npm.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
'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+$/;

if (!releaseReg.test(process.version)) {
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]);
assert.strictEqual(npmExec.status, 1);

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);
}

0 comments on commit a03809d

Please sign in to comment.