diff --git a/apps/ledger-live-desktop/tests/fixtures/common.ts b/apps/ledger-live-desktop/tests/fixtures/common.ts index 031a4b181774..72bf14d43f9c 100644 --- a/apps/ledger-live-desktop/tests/fixtures/common.ts +++ b/apps/ledger-live-desktop/tests/fixtures/common.ts @@ -12,6 +12,7 @@ import { launchApp } from "tests/utils/electronUtils"; import { captureArtifacts } from "tests/utils/allureUtils"; import { randomUUID } from "crypto"; import { AppInfos } from "tests/enum/AppInfos"; +import { runCliCommand } from "../utils/cliUtils"; type TestFixtures = { lang: string; @@ -104,6 +105,10 @@ export const test = base.extend({ ); setEnv("SPECULOS_API_PORT", device?.ports.apiPort?.toString()); process.env.SPECULOS_API_PORT = device?.ports.apiPort; + + const command = "balanceHistory --format asciichart"; + const output = await runCliCommand(command); + console.log(output); } try {