From 4c9d5447b8da88bb107f98e2d3b44123693426f3 Mon Sep 17 00:00:00 2001 From: Sander Declerck Date: Tue, 21 Apr 2026 14:40:01 +0200 Subject: [PATCH] Add logging --- test/e2e/Dockerfile | 2 +- test/e2e/setup.teardown.e2e.spec.js | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/test/e2e/Dockerfile b/test/e2e/Dockerfile index 3d3225a..da5b366 100644 --- a/test/e2e/Dockerfile +++ b/test/e2e/Dockerfile @@ -6,7 +6,7 @@ ENV CI=true WORKDIR /app # Copy package files first for better caching -COPY packages/safe-chain/package*.json ./ +COPY packages/safe-chain/package.json ./ COPY packages/safe-chain/npm-shrinkwrap.json ./ # Install dependencies diff --git a/test/e2e/setup.teardown.e2e.spec.js b/test/e2e/setup.teardown.e2e.spec.js index 0ddfaf4..a3fdce2 100644 --- a/test/e2e/setup.teardown.e2e.spec.js +++ b/test/e2e/setup.teardown.e2e.spec.js @@ -25,7 +25,8 @@ describe("E2E: safe-chain setup command", () => { it(`safe-chain setup wraps npm command after installation for ${shell}`, async () => { // setting up the container const installationShell = await container.openShell(shell); - await installationShell.runCommand("safe-chain setup"); + const out = await installationShell.runCommand("safe-chain setup"); + console.log(out.output); const projectShell = await container.openShell(shell); await projectShell.runCommand("cd /testapp");