Skip to content

Commit

Permalink
feat(rbac): add vscode debug configuration for opened jest test files
Browse files Browse the repository at this point in the history
Signed-off-by: Oleksandr Andriienko <oandriie@redhat.com>
  • Loading branch information
AndrienkoAleksandr committed Jan 8, 2024
1 parent 49c7975 commit 7597d8c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"version": "1.0.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Current selected test",
"program": "${workspaceRoot}/node_modules/.bin/backstage-cli",
"args": ["package", "test", "${relativeFile}"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
}
]
}

0 comments on commit 7597d8c

Please sign in to comment.