We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bb50b2 commit 663f8a8Copy full SHA for 663f8a8
test/spec.js
@@ -910,7 +910,8 @@ describe('checkDependencies', () => {
910
// The functions is supposed to not fail because it's instructed to do
911
// `npm install`/`bower install`.
912
assert.strictEqual(
913
- read(child.stderr),
+ // Strip npm http debug messages to make it CI-friendly.
914
+ (read(child.stderr) || '').replace(/^npm http .+\n/gm, ''),
915
[
916
'jquery: installed: 1.11.1, expected: <=1.11.0',
917
'json3: installed: 0.8.0, expected: 3.3.2',
0 commit comments