Licensed / Check licenses (push) Failing after 2s
Test / Build (ubuntu-latest) (push) Failing after 26s
Check dist/ / check-dist (push) Successful in 10m55s
Test / Build (macos-latest) (push) Has been cancelled
Test / Build (windows-latest) (push) Has been cancelled
Test / Merge (push) Has been cancelled
Code scanning - action / CodeQL-Build (push) Failing after 32s
36 lines
968 B
JSON
36 lines
968 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Debug Jest Tests",
|
|
"program": "${workspaceFolder}/node_modules/jest/bin/jest.js",
|
|
"args": [
|
|
"--runInBand",
|
|
"--testTimeout",
|
|
"10000"
|
|
],
|
|
"cwd": "${workspaceFolder}",
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen",
|
|
"disableOptimisticBPs": true
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Debug Current Test File",
|
|
"program": "${workspaceFolder}/node_modules/jest/bin/jest.js",
|
|
"args": [
|
|
"--runInBand",
|
|
"--testTimeout",
|
|
"10000",
|
|
"${relativeFile}"
|
|
],
|
|
"cwd": "${workspaceFolder}",
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen",
|
|
"disableOptimisticBPs": true
|
|
}
|
|
]
|
|
} |