tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

launch.template.json (1096B)


      1 {
      2  // Use IntelliSense to learn about possible attributes.
      3  // Hover to view descriptions of existing attributes.
      4  // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
      5  "version": "0.2.0",
      6  "inputs": [
      7    {
      8      "type": "pickString",
      9      "id": "suit",
     10      "description": "Which test suit to run?",
     11      "options": [
     12        "chrome-headless",
     13        "chrome-headful",
     14        "chrome-headless-shell",
     15        "firefox-headless",
     16        "firefox-headful",
     17        "chrome-bidi"
     18      ],
     19      "default": "chrome-headless"
     20    }
     21  ],
     22  "configurations": [
     23    {
     24      "type": "node",
     25      "request": "launch",
     26      "name": "Launch Tests",
     27      "skipFiles": ["<node_internals>/**"],
     28      "runtimeExecutable": "npm",
     29      "cwd": "${workspaceFolder}",
     30      "runtimeArgs": [
     31        "run-script",
     32        "test",
     33        "--",
     34        "--test-suite",
     35        "${input:suit}",
     36        "--no-coverage",
     37        "--no-suggestions"
     38      ],
     39      "outFiles": ["${workspaceFolder}/**/*.js"],
     40      "env": {
     41        "DEBUGGER_ATTACHED": true
     42      }
     43    }
     44  ]
     45 }