vega-frontend-monorepo/.vscode/launch.json
Bartłomiej Głownia c573349f68
[#185] Add accounts table (#193)
* [#185] Add accounts table

* [#185] Add summary row to accounts table
2022-04-06 10:48:05 -07:00

21 lines
439 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Jest",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/node_modules/@nrwl/cli/bin/nx.js",
"args": [
"test",
"accounts",
"--codeCoverage=false",
"--testFile=summary-row.spec.ts",
"--watch"
],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal"
}
]
}