{ // 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": "node", "request": "launch", "name": "debug tests", "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", "args": [ "-u", "tdd", "--timeout", "999999", "--colors", "${workspaceFolder}/e2e", "--opts", "../config/mocha.opts", "-p", "4723", "-a", "--grep", "layout-root" ], "internalConsoleOptions": "openOnSessionStart" }, { "type": "node", "request": "launch", "name": "Launch Tests on Android", "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", "args": [ "-u", "tdd", "--timeout", "999999", "--colors", // "${workspaceFolder}/test", "--opts", "./e2e/config/mocha.opts", "--runType", "android23", "--reuseDevice", "--verbose" ], "internalConsoleOptions": "openOnSessionStart" }, { "type": "node", "request": "launch", "name": "Launch Tests on iOS", "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", "args": [ "-u", "tdd", "--timeout", "999999", "--colors", // "${workspaceFolder}/test", "--opts", "./e2e/config/mocha.opts", "--runType", "sim.iPhoneX.iOS112", "--reuseDevice", "--verbose" ], "internalConsoleOptions": "openOnSessionStart" }, { "name": "Launch on iOS", "type": "nativescript", "request": "launch", "platform": "ios", "appRoot": "${workspaceRoot}", "sourceMaps": true, "stopOnEntry": false, "tnsArgs": [ "--syncAllFiles" ], "watch": true }, { "name": "Attach on iOS", "type": "nativescript", "request": "attach", "platform": "ios", "appRoot": "${workspaceRoot}", "sourceMaps": true, "tnsArgs": [ "--syncAllFiles" ], "watch": false }, { "name": "Launch on Android", "type": "nativescript", "request": "launch", "platform": "android", "appRoot": "${workspaceRoot}", "sourceMaps": true, "stopOnEntry": false, "tnsArgs": [ "--syncAllFiles" ], "watch": true }, { "name": "Attach on Android", "type": "nativescript", "request": "attach", "platform": "android", "appRoot": "${workspaceRoot}", "sourceMaps": true, "tnsArgs": [ "--syncAllFiles" ], "watch": false } ] }