From 7c431bd9a80d16d1664f75f52b92e27cb63fc12c Mon Sep 17 00:00:00 2001 From: Mark Allen Date: Wed, 15 Jan 2025 12:36:21 +0000 Subject: [PATCH] Remove the check for the NPM 6 cafile in .npmrc --- npm_and_yarn/spec/npm_and_yarn_config_spec.rb | 3 --- 1 file changed, 3 deletions(-) diff --git a/npm_and_yarn/spec/npm_and_yarn_config_spec.rb b/npm_and_yarn/spec/npm_and_yarn_config_spec.rb index e7b21bc99d..f26bb7586e 100644 --- a/npm_and_yarn/spec/npm_and_yarn_config_spec.rb +++ b/npm_and_yarn/spec/npm_and_yarn_config_spec.rb @@ -10,9 +10,6 @@ npm_result = `npm config list` # Output from yarn config set expect(npm_result).to include("audit = false") - expect(npm_result).to include( - "cafile = \"/usr/local/share/ca-certificates/dbot-ca.crt\"" - ) expect(npm_result).to include("dry-run = true") expect(npm_result).to include("ignore-scripts = true") end