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