mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
56 lines
1.7 KiB
JSON
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"
|
|
}
|
|
]
|
|
} |