2020-06-16 07:38:24 +03:00
|
|
|
{
|
|
|
|
// Use IntelliSense to learn about possible attributes.
|
|
|
|
// Hover to view descriptions of existing attributes.
|
|
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
|
|
|
"type": "pwa-node",
|
|
|
|
"request": "launch",
|
|
|
|
"name": "Run Tests",
|
2020-09-19 22:38:13 +03:00
|
|
|
"trace": true,
|
2020-06-16 07:38:24 +03:00
|
|
|
"skipFiles": ["<node_internals>/**"],
|
|
|
|
"program": "${workspaceFolder}/node_modules/mocha/bin/mocha",
|
2020-09-19 22:38:13 +03:00
|
|
|
"args": ["--timeout", "10000", "--require", "./lib/test/_setup.js", "lib/test/**/*.test.js"],
|
|
|
|
"outFiles": [
|
|
|
|
"${workspaceFolder}/**/*.js",
|
|
|
|
"!**/node_modules/**"
|
2020-06-16 07:38:24 +03:00
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|