Files
NativeScript/e2e/ui-tests-app/.vscode/launch.json
SvetoslavTsenov eaf930f197 fixes
2019-07-16 13:32:28 +03:00

56 lines
1.7 KiB
JSON

{
// 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": [
{
"name": "Launch on iOS",
"type": "nativescript",
"request": "launch",
"platform": "ios",
"appRoot": "${workspaceRoot}",
"sourceMaps": true,
"watch": true,
"tnsArgs": [
"--debug-brk"
]
},
{
"type": "node",
"request": "launch",
"name": "debug-tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"-u",
"tdd",
"--colors",
"--opts",
"../config/mocha.opts",
"--grep=bottom-navigation",
"-a",
],
"internalConsoleOptions": "openOnSessionStart",
// "preLaunchTask": "e2e-tsc"
},
{
"type": "node",
"request": "launch",
"name": "run-tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"-u",
"tdd",
"--colors",
"--opts",
"../config/mocha.opts",
"--grep=bottom-navigation",
"android",
"--grep=bottom-navigation",
"--port",
"8889",
],
"internalConsoleOptions": "openOnSessionStart"
}
]
}