From 1f2d4e86c7de83c5ca1b00e63b0467fa3c2dce4d Mon Sep 17 00:00:00 2001 From: Sander Declerck Date: Wed, 15 Oct 2025 07:54:35 +0200 Subject: [PATCH] Add registry to localhost again --- 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 c475fdf..276d5e8 100644 --- a/test/e2e/safe-chain-proxy.e2e.spec.js +++ b/test/e2e/safe-chain-proxy.e2e.spec.js @@ -86,7 +86,9 @@ describe("E2E: Safe chain proxy", () => { } const shell = await container.openShell("bash"); - const result = await shell.runCommand("npm install lodash"); + const result = await shell.runCommand( + "npm install lodash --registry http://localhost:4873" + ); console.log("NPM install output:\n", result.output);