Change command to install through registry.

This commit is contained in:
Sander Declerck 2025-10-14 13:52:28 +02:00
parent 37585e8073
commit f655e8cfcb
No known key found for this signature in database

View file

@ -83,9 +83,9 @@ describe("E2E: Safe chain proxy", () => {
assert.fail("Verdaccio did not start in time"); assert.fail("Verdaccio did not start in time");
} }
const shell = await container.openShell("zsh"); const shell = await container.openShell("bash");
const result = await shell.runCommand( const result = await shell.runCommand(
"npm --registry http://localhost:4873 install react" "npm install lodash --registry=http://localhost:4873"
); );
// Check if the installation was successful // Check if the installation was successful