2024-08-13 14:50:07 +03:00
|
|
|
{
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
2024-11-27 17:09:59 +03:00
|
|
|
"name": "GUI",
|
2024-08-28 19:17:48 +03:00
|
|
|
"runtimeExecutable": "pnpm",
|
2024-11-27 17:09:59 +03:00
|
|
|
"runtimeArgs": ["dev:gui"],
|
2024-09-06 17:29:26 +03:00
|
|
|
"outputCapture": "std"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
2024-11-27 17:09:59 +03:00
|
|
|
"name": "GUI (Electron, Linux)",
|
2024-09-06 17:29:26 +03:00
|
|
|
"runtimeExecutable": "pnpm",
|
|
|
|
"runtimeArgs": ["run", "--filter", "enso", "watch:linux"],
|
|
|
|
"outputCapture": "std"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
2024-11-27 17:09:59 +03:00
|
|
|
"name": "GUI (Electron, macOS)",
|
2024-09-06 17:29:26 +03:00
|
|
|
"runtimeExecutable": "pnpm",
|
|
|
|
"runtimeArgs": ["run", "--filter", "enso", "watch:macos"],
|
|
|
|
"outputCapture": "std"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
2024-11-27 17:09:59 +03:00
|
|
|
"name": "GUI (Electron, Windows)",
|
2024-09-06 17:29:26 +03:00
|
|
|
"runtimeExecutable": "pnpm",
|
|
|
|
"runtimeArgs": ["run", "--filter", "enso", "watch:windows"],
|
|
|
|
"outputCapture": "std"
|
2024-08-13 14:50:07 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
2024-11-27 17:09:59 +03:00
|
|
|
"name": "GUI (Build)",
|
2024-08-28 19:17:48 +03:00
|
|
|
"runtimeExecutable": "pnpm",
|
2024-09-06 17:29:26 +03:00
|
|
|
"runtimeArgs": ["build:gui"],
|
|
|
|
"outputCapture": "std"
|
2024-08-13 14:50:07 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
2024-11-27 17:09:59 +03:00
|
|
|
"name": "GUI (All tests)",
|
2024-08-28 19:17:48 +03:00
|
|
|
"runtimeExecutable": "pnpm",
|
2024-11-27 17:09:59 +03:00
|
|
|
"runtimeArgs": ["run", "--filter", "enso-gui", "test"]
|
2024-08-13 14:50:07 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
2024-11-27 17:09:59 +03:00
|
|
|
"name": "GUI (Unit tests)",
|
2024-08-28 19:17:48 +03:00
|
|
|
"runtimeExecutable": "pnpm",
|
2024-11-27 17:09:59 +03:00
|
|
|
"runtimeArgs": ["run", "--filter", "enso-gui", "test:unit"],
|
2024-08-13 14:50:07 +03:00
|
|
|
"outputCapture": "std"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
2024-11-27 17:09:59 +03:00
|
|
|
"name": "GUI (Integration tests)",
|
2024-08-28 19:17:48 +03:00
|
|
|
"runtimeExecutable": "pnpm",
|
2024-11-27 17:09:59 +03:00
|
|
|
"runtimeArgs": ["run", "--filter", "enso-gui", "test:integration"],
|
2024-08-13 14:50:07 +03:00
|
|
|
"outputCapture": "std"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
2024-11-27 17:09:59 +03:00
|
|
|
"name": "GUI (Integration tests with UI)",
|
2024-08-28 19:17:48 +03:00
|
|
|
"runtimeExecutable": "pnpm",
|
2024-11-27 17:09:59 +03:00
|
|
|
"runtimeArgs": ["run", "--filter", "enso-gui", "test-dev:integration"],
|
2024-08-13 14:50:07 +03:00
|
|
|
"outputCapture": "std"
|
|
|
|
},
|
|
|
|
]
|
|
|
|
}
|