Add debugger for unit tests (#2392)

This commit is contained in:
Tasos Boulis 2022-11-16 19:16:12 +02:00 committed by GitHub
parent 44931843ff
commit eb31d6f54f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

8
.vscode/launch.json vendored
View file

@ -56,6 +56,14 @@
],
"internalConsoleOptions": "openOnSessionStart",
"preLaunchTask": "prepare-e2e"
},
{
"type": "node",
"request": "launch",
"name": "Unit Tests",
"program": "${workspaceRoot}/node_modules/jest/bin/jest",
"args": [],
"internalConsoleOptions": "openOnSessionStart",
}
]
}