21 lines
544 B
JSON
21 lines
544 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Test",
|
|
"program": "${workspaceFolder}/node_modules/mocha/bin/mocha",
|
|
"cwd": "${workspaceRoot}",
|
|
"args": ["--no-timeouts", "--colors"]
|
|
},
|
|
{
|
|
"type": "pwa-chrome",
|
|
"request": "launch",
|
|
"name": "Chrome",
|
|
"url": "http://localhost:8080/website",
|
|
"webRoot": "${workspaceFolder}"
|
|
}
|
|
]
|
|
}
|