Skip to content

Commit

Permalink
Merge pull request #20 from kieler/mka/tests
Browse files Browse the repository at this point in the history
add config to debug tests in vscode
  • Loading branch information
Eddykasp authored Oct 13, 2023
2 parents ca454b5 + 5f6ba06 commit 5b0e341
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,25 @@
"webpack://?:*/*": "${workspaceFolder}/extension/*"
},
"type": "node"
},
{
"args": [
"-u",
"bdd",
"--timeout",
"999999",
"--colors",
"--require", "ts-node/register",
"${workspaceFolder}/test/**/*.ts"
],
"internalConsoleOptions": "openOnSessionStart",
"name": "Debug Mocha Tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"request": "launch",
"skipFiles": [
"<node_internals>/**"
],
"type": "node"
}
]
}

0 comments on commit 5b0e341

Please sign in to comment.