Add logging

This commit is contained in:
Sander Declerck 2026-04-21 14:40:01 +02:00
parent 79326e603e
commit 4c9d5447b8
No known key found for this signature in database
2 changed files with 3 additions and 2 deletions

View file

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