summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/.vscode
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:35:37 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:35:37 +0000
commita90a5cba08fdf6c0ceb95101c275108a152a3aed (patch)
tree532507288f3defd7f4dcf1af49698bcb76034855 /remote/test/puppeteer/.vscode
parentAdding debian version 126.0.1-1. (diff)
downloadfirefox-a90a5cba08fdf6c0ceb95101c275108a152a3aed.tar.xz
firefox-a90a5cba08fdf6c0ceb95101c275108a152a3aed.zip
Merging upstream version 127.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'remote/test/puppeteer/.vscode')
-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
+ }
+ }
+ ]
+}