Skip to content

Commit

Permalink
changes for test purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
abenso committed Aug 26, 2024
1 parent c63ddcd commit 34ae0a2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
# BOLOS_SDK IS DEFINED We use the plain Makefile for Ledger
# BOLOS_SDK NOT DEFINED We use a containerized build approach

# TESTS_JS_PACKAGE = "@zondax/ledger-kadena"
# TESTS_JS_DIR = $(CURDIR)/../ledger-kadena-js
TESTS_JS_PACKAGE = "@zondax/ledger-kadena"
TESTS_JS_DIR = $(CURDIR)/../ledger-kadena-js

ifeq ($(BOLOS_SDK),)
# In this case, there is not predefined SDK and we run dockerized
Expand Down
2 changes: 1 addition & 1 deletion tests_zemu/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"format:check": "FORCE_COLOR=1 prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "jest",
"test": "jest tests/transactions.test.ts",
"try": "node try.mjs",
"upgrade": "bunx npm-check-updates -i"
},
Expand Down
8 changes: 4 additions & 4 deletions tests_zemu/tests/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ const APP_PATH_ST = resolve('../app/output/app_stax.elf')
const APP_PATH_FL = resolve('../app/output/app_flex.elf')

export const models: IDeviceModel[] = [
{ name: 'nanos', prefix: 'S', path: APP_PATH_S },
// { name: 'nanos', prefix: 'S', path: APP_PATH_S },
{ name: 'nanox', prefix: 'X', path: APP_PATH_X },
{ name: 'nanosp', prefix: 'SP', path: APP_PATH_SP },
{ name: 'stax', prefix: 'ST', path: APP_PATH_ST },
{ name: 'flex', prefix: 'FL', path: APP_PATH_FL },
// { name: 'nanosp', prefix: 'SP', path: APP_PATH_SP },
// { name: 'stax', prefix: 'ST', path: APP_PATH_ST },
// { name: 'flex', prefix: 'FL', path: APP_PATH_FL },
]

export const PATH = "m/44'/626'/0'/0/0"
Expand Down

0 comments on commit 34ae0a2

Please sign in to comment.