fws
Version:
Fws is a workflow management tool that focuses on global automation tasks.
29 lines • 847 B
JSON
{
"//":"欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387",
"version": "0.2.0",
"configurations": [
{
"name": "FWS Web",
"type": "chrome",
"request": "launch",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}",
"sourceMaps": true
},
{
"name": "FWS Mocha",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"-u",
"tdd",
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/test"
],
"internalConsoleOptions": "openOnSessionStart"
}
]
}