summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/.vscode/launch.template.json
diff options
context:
space:
mode:
Diffstat (limited to 'remote/test/puppeteer/.vscode/launch.template.json')
-rw-r--r--remote/test/puppeteer/.vscode/launch.template.json46
1 files changed, 46 insertions, 0 deletions
diff --git a/remote/test/puppeteer/.vscode/launch.template.json b/remote/test/puppeteer/.vscode/launch.template.json
new file mode 100644
index 0000000000..51870281bd
--- /dev/null
+++ b/remote/test/puppeteer/.vscode/launch.template.json
@@ -0,0 +1,46 @@
+{
+ // 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",
+ "inputs": [
+ {
+ "type": "pickString",
+ "id": "suit",
+ "description": "Which test suit to run?",
+ "options": [
+ "chrome-headless",
+ "chrome-headful",
+ "chrome-headless-shell",
+ "firefox-headless",
+ "firefox-headful",
+ "firefox-bidi",
+ "chrome-bidi"
+ ],
+ "default": "chrome-headless"
+ }
+ ],
+ "configurations": [
+ {
+ "type": "node",
+ "request": "launch",
+ "name": "Launch Tests",
+ "skipFiles": ["<node_internals>/**"],
+ "runtimeExecutable": "npm",
+ "cwd": "${workspaceFolder}",
+ "runtimeArgs": [
+ "run-script",
+ "test",
+ "--",
+ "--test-suite",
+ "${input:suit}",
+ "--no-coverage",
+ "--no-suggestions"
+ ],
+ "outFiles": ["${workspaceFolder}/**/*.js"],
+ "env": {
+ "DEBUGGER_ATTACHED": true
+ }
+ }
+ ]
+}