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
…#1047)

Signed-off-by: Oleksandr Andriienko <[email protected]>
  • Loading branch information
AndrienkoAleksandr authored Jan 15, 2024
1 parent fc9ad53 commit 7e7a9ae
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 7e7a9ae

Please sign in to comment.