mirror of
https://github.com/AikidoSec/safe-chain.git
synced 2026-05-26 12:10:49 +00:00
Add logging
This commit is contained in:
parent
79326e603e
commit
4c9d5447b8
2 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue