mirror of
https://github.com/enso-org/enso.git
synced 2024-12-20 07:51:56 +03:00
736134e491
Fixes #11604 Most issues were caused by a problem with Project List flooding the network with its requests - this was fixed on develop. But one assertion was flaky - it assumed we will see the "real" run result on `write` node, but sometimes it is immediately overwritten by dry run. But the most important part of this PR is adding traces to Electron packages - it's should be much easier now to debug E2E test failures. Also renamed the previously misnamed "E2E tests" to "[GUI] integration tests".
77 lines
2.0 KiB
JSON
77 lines
2.0 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "GUI",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["dev:gui"],
|
|
"outputCapture": "std"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "GUI (Electron, Linux)",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["run", "--filter", "enso", "watch:linux"],
|
|
"outputCapture": "std"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "GUI (Electron, macOS)",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["run", "--filter", "enso", "watch:macos"],
|
|
"outputCapture": "std"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "GUI (Electron, Windows)",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["run", "--filter", "enso", "watch:windows"],
|
|
"outputCapture": "std"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "GUI (Build)",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["build:gui"],
|
|
"outputCapture": "std"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "GUI (All tests)",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["run", "--filter", "enso-gui", "test"]
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "GUI (Unit tests)",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["run", "--filter", "enso-gui", "test:unit"],
|
|
"outputCapture": "std"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "GUI (Integration tests)",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["run", "--filter", "enso-gui", "test:integration"],
|
|
"outputCapture": "std"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "GUI (Integration tests with UI)",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["run", "--filter", "enso-gui", "test-dev:integration"],
|
|
"outputCapture": "std"
|
|
},
|
|
]
|
|
}
|