mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
* Update README.md * comment flip * skip specific test suites with known issues * restore skipped ios tests * chore: update css for ios * chore: update android css * chore: tab-root tests remove suspend for android * chore: frame-root tested on api23, api27 and ios11 * chore: fix tslint * chore: frame-tab-root tests api27 * chore: lower font size
122 lines
3.6 KiB
JSON
122 lines
3.6 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": [
|
|
{
|
|
"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
|
|
}
|
|
]
|
|
} |