mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 13:07:17 -04:00
45 lines
1.2 KiB
JSON
45 lines
1.2 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"name": "Meteor: Chrome",
|
|
"url": "http://localhost:3000",
|
|
"webRoot": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Meteor: Node",
|
|
"runtimeExecutable": "/home/wekan/.meteor/meteor",
|
|
"runtimeArgs": ["run", "--inspect-brk=9229"],
|
|
"outputCapture": "std",
|
|
"port": 9229,
|
|
"timeout": 60000
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Test: Node",
|
|
"runtimeExecutable": "meteor",
|
|
"runtimeArgs": [
|
|
"test",
|
|
"--inspect-brk=9229",
|
|
"--port=4040",
|
|
"--exclude-archs=web.browser.legacy,web.cordova",
|
|
"--driver-package=meteortesting:mocha",
|
|
"--settings=settings.json"
|
|
],
|
|
"outputCapture": "std",
|
|
"port": 9229,
|
|
"timeout": 60000
|
|
}
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "Meteor: All",
|
|
"configurations": ["Meteor: Node", "Meteor: Chrome"]
|
|
}
|
|
]
|
|
}
|