Skip to content

Commit

Permalink
chore: add jest debug config
Browse files Browse the repository at this point in the history
  • Loading branch information
exuanbo committed Dec 12, 2023
1 parent 6d53419 commit 67a0517
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"configurations": [
{
"type": "node",
"name": "vscode-jest-tests.v2",
"request": "launch",
"args": [
"--coverage=false",
"--runInBand",
"--watchAll=false",
"--testNamePattern",
"${jest.testNamePattern}",
"--runTestsByPath",
"${jest.testFile}"
],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"program": "${workspaceFolder}/node_modules/.bin/jest"
}
]
}

0 comments on commit 67a0517

Please sign in to comment.