git.delta.rocks / unique-network / refs/commits / 01c5056ea7e7

difftreelog

source

tests/.vscode/launch.json1.1 KiBsourcehistory
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=8303875  "version": "0.2.0",6  "configurations": [7    {8      "type": "node",9      "request": "launch",10      "name": "Mocha Current File",11      "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",12      "args": [13        "--timeout",14        "9999999",15        "--colors",16        "--recursive",17        "--require",18        "ts-node/register",19        "${file}"20      ],21      "console": "integratedTerminal",22      "internalConsoleOptions": "neverOpen"23    },24    {25      "type": "node",26      "request": "launch",27      "name": "Mocha All tests",28      "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",29      "args": [30        "--timeout",31        "9999999",32        "--colors",33        "--recursive",34        "--require",35        "ts-node/register",36        "./**/*.test.ts"37      ],38      "console": "integratedTerminal",39      "internalConsoleOptions": "neverOpen"40    }41  ]42}