Skip to content

Commit

Permalink
feat: vscode jest
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelcr committed Oct 22, 2024
1 parent a4cc180 commit 7660a9a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "ts client: jest",
"localRoot": "${workspaceFolder}/components/client/typescript",
"program": "${workspaceFolder}/components/client/typescript/node_modules/jest/bin/jest",
"args": [
"--runInBand",
"--no-cache",
],
"outputCapture": "std",
"console": "integratedTerminal",
},
]
}

0 comments on commit 7660a9a

Please sign in to comment.