From 35beeb55b09ff9822a6bfccdd50ab73e2bd894c6 Mon Sep 17 00:00:00 2001 From: Sander Declerck Date: Tue, 14 Oct 2025 14:10:23 +0200 Subject: [PATCH] Curl url with npm package --- test/e2e/safe-chain-proxy.e2e.spec.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/e2e/safe-chain-proxy.e2e.spec.js b/test/e2e/safe-chain-proxy.e2e.spec.js index 363787f..be0d6ea 100644 --- a/test/e2e/safe-chain-proxy.e2e.spec.js +++ b/test/e2e/safe-chain-proxy.e2e.spec.js @@ -68,7 +68,7 @@ describe("E2E: Safe chain proxy", () => { await new Promise((resolve) => setTimeout(resolve, 500)); try { const curlOutput = container.dockerExec( - "curl -I http://localhost:4873/" + "curl -I http://localhost:4873/lodash" ); if (curlOutput.includes("200 OK")) { verdaccioStarted = true; @@ -88,6 +88,8 @@ describe("E2E: Safe chain proxy", () => { "npm install lodash --registry=http://localhost:4873" ); + console.log("NPM install output:", result.output); + // Check if the installation was successful assert( result.output.includes("added"),