Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
arnog committed Jul 17, 2024
1 parent ef884ca commit fc7bb6c
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,15 @@
"configurations": [
{
"name": "Launch Chrome",
"type": "chrome",
"request": "launch",
"type": "pwa-chrome",
"url": "http://localhost:8080/examples/test-cases",
"webRoot": "${workspaceFolder}",
"preLaunchTask": "start"
"webRoot": "${workspaceFolder}/dist",
"preLaunchTask": "npm: start",
"sourceMaps": true,
"sourceMapPathOverrides": {
"webpack:///src/*": "${workspaceFolder}/src/*"
}
},
{
"name": "Debug Jest Tests",
Expand All @@ -23,8 +27,16 @@
"--runInBand"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"port": 9229
"internalConsoleOptions": "neverOpen"
},
{
"type": "node",
"request": "launch",
"name": "Jest Current File",
"program": "${workspaceFolder}/node_modules/.bin/jest",
"args": ["${relativeFile}", "--no-cache"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
]
}

0 comments on commit fc7bb6c

Please sign in to comment.