Created
January 9, 2020 07:11
-
-
Save rhopp/efd971ace1af72a1ee74659eb331b308 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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": "Mocha Tests", | |
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", | |
"args": [ | |
"-u", | |
"tdd", | |
"--timeout", | |
"2200000", | |
"--reporter", | |
"${workspaceFolder}/dist/driver/CheReporter.js", | |
"--bail", | |
"--full-trace" | |
"--colors", | |
"${workspaceFolder}/dist/tests/e2e_happy_path" | |
], | |
"env": { | |
"TS_SELENIUM_BASE_URL": "http://che-che-nightly.apps.rhopp-crw2.devcluster.openshift.com/", | |
"TS_SELENIUM_USERNAME": "admin", | |
"TS_SELENIUM_PASSWORD": "admin", | |
"TS_SELENIUM_MULTIUSER": "true", | |
"TS_SELENIUM_LOAD_PAGE_TIMEOUT": "600000", | |
"DISPLAY": ":1", | |
"TS_SELENIUM_LOG_LEVEL": "TRACE" | |
}, | |
"internalConsoleOptions": "openOnSessionStart", | |
"skipFiles": [ | |
"<node_internals>/**" | |
], | |
"preLaunchTask": "npm: tsc", | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment