ffjavascript/.vscode/launch.json

32 lines
985 B
JSON
Raw Permalink Normal View History

2021-11-22 10:19:49 +01:00
{
// 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": [
{
"type": "pwa-node",
"request": "launch",
"name": "Test BN128",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"${workspaceFolder}/test/bn128.js"
]
2022-04-01 12:04:37 +02:00
},
{
"type": "pwa-node",
"request": "launch",
"name": "Test Algebra",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"${workspaceFolder}/test/algebra.js"
]
2021-11-22 10:19:49 +01:00
}
]
}