tor-browser

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

schema.json (934B)


      1 {
      2  "$schema": "http://json-schema.org/schema",
      3  "$id": "Puppeteer",
      4  "title": "Puppeteer Install Schema",
      5  "type": "object",
      6  "properties": {
      7    "testRunner": {
      8      "type": "string",
      9      "enum": ["jasmine", "jest", "mocha", "node"],
     10      "default": "jasmine",
     11      "alias": "t",
     12      "x-prompt": {
     13        "message": "Which test runners do you wish to use?",
     14        "type": "list",
     15        "items": [
     16          {
     17            "value": "jasmine",
     18            "label": "Use Jasmine [https://jasmine.github.io/]"
     19          },
     20          {
     21            "value": "jest",
     22            "label": "Use Jest [https://jestjs.io/]"
     23          },
     24          {
     25            "value": "mocha",
     26            "label": "Use Mocha [https://mochajs.org/]"
     27          },
     28          {
     29            "value": "node",
     30            "label": "Use Node Test Runner [https://nodejs.org/api/test.html]"
     31          }
     32        ]
     33      }
     34    }
     35  },
     36  "required": []
     37 }