-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #413 from GridPlus/dl/modularclient
- Loading branch information
Showing
106 changed files
with
48,905 additions
and
33,384 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,78 +1,99 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "test-all", | ||
"type": "node", | ||
"args": ["run", "${relativeFile}"], | ||
"autoAttachChildProcesses": true, | ||
"console": "integratedTerminal", | ||
"name": "Debug Current Test File", | ||
"program": "${workspaceRoot}/node_modules/vitest/vitest.mjs", | ||
"request": "launch", | ||
"skipFiles": ["<node_internals>/**", "**/node_modules/**"], | ||
"smartStep": true, | ||
"type": "pwa-node" | ||
}, | ||
{ | ||
"console": "integratedTerminal", | ||
"cwd": "${workspaceFolder}", | ||
"runtimeExecutable": "npm", | ||
"runtimeArgs": ["run-script", "test"], | ||
"envFile": "${workspaceFolder}/.env", | ||
"console": "integratedTerminal" | ||
"name": "Unit Tests - All", | ||
"request": "launch", | ||
"runtimeArgs": ["run-script", "test"], | ||
"runtimeExecutable": "npm", | ||
"type": "node" | ||
}, | ||
{ | ||
"name": "test-btc", | ||
"type": "node", | ||
"request": "launch", | ||
"console": "integratedTerminal", | ||
"cwd": "${workspaceFolder}", | ||
"runtimeExecutable": "npm", | ||
"runtimeArgs": ["run-script", "test-btc"], | ||
"envFile": "${workspaceFolder}/.env", | ||
"console": "integratedTerminal" | ||
"name": "E2E Tests - All", | ||
"request": "launch", | ||
"runtimeArgs": ["run-script", "e2e"], | ||
"runtimeExecutable": "npm", | ||
"type": "node" | ||
}, | ||
{ | ||
"name": "test-eth-msg", | ||
"type": "node", | ||
"request": "launch", | ||
"console": "integratedTerminal", | ||
"cwd": "${workspaceFolder}", | ||
"runtimeExecutable": "npm", | ||
"runtimeArgs": ["run-script", "test-eth-msg"], | ||
"envFile": "${workspaceFolder}/.env", | ||
"console": "integratedTerminal" | ||
"name": "E2E Tests - General", | ||
"request": "launch", | ||
"runtimeArgs": ["run-script", "e2e-gen"], | ||
"runtimeExecutable": "npm", | ||
"type": "node" | ||
}, | ||
{ | ||
"name": "test-kv", | ||
"type": "node", | ||
"request": "launch", | ||
"console": "integratedTerminal", | ||
"cwd": "${workspaceFolder}", | ||
"runtimeExecutable": "npm", | ||
"runtimeArgs": ["run-script", "test-kv"], | ||
"envFile": "${workspaceFolder}/.env", | ||
"console": "integratedTerminal" | ||
"name": "E2E Tests - Bitcoin", | ||
"request": "launch", | ||
"runtimeArgs": ["run-script", "e2e-btc"], | ||
"runtimeExecutable": "npm", | ||
"type": "node" | ||
}, | ||
{ | ||
"name": "test-non-exportable", | ||
"type": "node", | ||
"request": "launch", | ||
"console": "integratedTerminal", | ||
"cwd": "${workspaceFolder}", | ||
"runtimeExecutable": "npm", | ||
"runtimeArgs": ["run-script", "test-non-exportable"], | ||
"envFile": "${workspaceFolder}/.env", | ||
"console": "integratedTerminal" | ||
"name": "E2E Tests - Signing", | ||
"request": "launch", | ||
"runtimeArgs": ["run-script", "e2e-sign"], | ||
"runtimeExecutable": "npm", | ||
"type": "node" | ||
}, | ||
{ | ||
"name": "test-signing", | ||
"type": "node", | ||
"request": "launch", | ||
"console": "integratedTerminal", | ||
"cwd": "${workspaceFolder}", | ||
"runtimeExecutable": "npm", | ||
"runtimeArgs": ["run-script", "test-signing"], | ||
"envFile": "${workspaceFolder}/.env", | ||
"console": "integratedTerminal" | ||
"name": "E2E Tests - Key-Value", | ||
"request": "launch", | ||
"runtimeArgs": ["run-script", "e2e-kv"], | ||
"runtimeExecutable": "npm", | ||
"type": "node" | ||
}, | ||
{ | ||
"name": "test-wallet-jobs", | ||
"type": "node", | ||
"request": "launch", | ||
"console": "integratedTerminal", | ||
"cwd": "${workspaceFolder}", | ||
"envFile": "${workspaceFolder}/.env", | ||
"name": "E2E Tests - Non-Exportable Card", | ||
"request": "launch", | ||
"runtimeArgs": ["run-script", "e2e-ne"], | ||
"runtimeExecutable": "npm", | ||
"runtimeArgs": ["run-script", "test-wallet-jobs"], | ||
"type": "node" | ||
}, | ||
{ | ||
"console": "integratedTerminal", | ||
"cwd": "${workspaceFolder}", | ||
"envFile": "${workspaceFolder}/.env", | ||
"console": "integratedTerminal" | ||
"name": "E2E Tests - Wallet Jobs", | ||
"request": "launch", | ||
"runtimeArgs": ["run-script", "e2e-wj"], | ||
"runtimeExecutable": "npm", | ||
"type": "node" | ||
} | ||
] | ||
], | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.