Skip to content

Commit

Permalink
Fixes for JS tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
bigspider committed Nov 29, 2024
1 parent c49167c commit 0456d6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ jobs:
run: |
cd bitcoin_client_js
yarn install
LOG_SPECULOS=1 LOG_APDUS=1 SPECULOS="/speculos/speculos.py" yarn test
LOG_SPECULOS=1 LOG_APDUS=1 yarn test
job_test_rust_client:
Expand Down
2 changes: 1 addition & 1 deletion bitcoin_client_js/src/__tests__/appClient.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ process and all the APDUs exchanged during the tests.

const repoRootPath = path.resolve(process.cwd(), '..')

const speculos_path = process.env.SPECULOS || "speculos.py";
const speculos_path = process.env.SPECULOS || "speculos";

function sleep(ms: number): Promise<void> {
return new Promise((resolve) => {
Expand Down

0 comments on commit 0456d6d

Please sign in to comment.