mirror of
https://github.com/enso-org/enso.git
synced 2024-11-29 15:52:13 +03:00
4a249688e8
Fixes #10668 Fixes #8484 Summary of changes: * `gui2` and `dashboard` are merged to `gui` directory. Various configs were merged (package.json, playwrigth, TS...). The src and e2e directories are split to `dashboard` and `project-view` for now. * E2E tests run two servers on different ports. The tests are organized in projects. This is also to be changed soon, as we plan to [use better mocking in GUI/ProjectView](#9726) * ESlint configs were merged to central `eslint.config.mjs`, and that file was moved to repository root. We kept the dashboard lints, but they can be relaxed. The dashboard code was changed to meet GUI lints. * Also, the versions of linter plugins were bumped, and code fixed. * The ide-desktop/client no longer has `dashboard` dependency - the only type used there was moved to common package. * `common` package moved to `app`.
125 lines
3.3 KiB
JSON
125 lines
3.3 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Dashboard",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["run", "--filter", "enso-dashboard", "dev"],
|
|
"outputCapture": "std"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Dashboard (Electron, Linux)",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["run", "--filter", "enso", "watch:linux"],
|
|
"outputCapture": "std"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Dashboard (Electron, macOS)",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["run", "--filter", "enso", "watch:macos"],
|
|
"outputCapture": "std"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Dashboard (Electron, Windows)",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["run", "--filter", "enso", "watch:windows"],
|
|
"outputCapture": "std"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "GUI",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["dev:gui"],
|
|
"outputCapture": "std"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "GUI (Storybook)",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["run", "--filter", "enso-gui", "story:dev"],
|
|
"outputCapture": "std"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Dashboard (Build)",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["build:gui"],
|
|
"outputCapture": "std"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Dashboard (E2E UI)",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["run", "--filter", "enso-dashboard", "test-dev:e2e"],
|
|
"outputCapture": "std"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "GUI (E2E UI)",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["run", "--filter", "enso-gui", "test:e2e", "--", "--ui"],
|
|
"outputCapture": "std"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Dashboard (All tests)",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["run", "--filter", "enso-dashboard", "test"],
|
|
"outputCapture": "std"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Dashboard (E2E tests)",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["run", "--filter", "enso-dashboard", "test:e2e"],
|
|
"outputCapture": "std"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Dashboard (Unit tests)",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["run", "--filter", "enso-dashboard", "test:unit"],
|
|
"outputCapture": "std"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "GUI (All tests)",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["run", "--filter", "enso-gui", "test"]
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "GUI (E2E tests)",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["run", "--filter", "enso-gui", "test:e2e"],
|
|
"outputCapture": "std"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "GUI (Unit tests)",
|
|
"runtimeExecutable": "pnpm",
|
|
"runtimeArgs": ["run", "--filter", "enso-gui", "test:unit", "--", "run"],
|
|
"outputCapture": "std"
|
|
}
|
|
]
|
|
}
|