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"),