plum-e2e 2.6.9 → 2.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CLAUDE.md +17 -2
- package/LICENSE +21 -677
- package/README.md +1 -1
- package/backend/Dockerfile +1 -13
- package/backend/app.js +4 -14
- package/backend/config/scripts/create-step.mjs +1 -13
- package/backend/config/scripts/create-test.mjs +1 -13
- package/backend/config/scripts/generate-report.js +5 -15
- package/backend/config/scripts/run-tests.js +5 -16
- package/backend/constants/defaults.js +8 -0
- package/backend/constants/env.js +16 -0
- package/backend/constants/jobStatus.js +21 -0
- package/backend/constants/socketEvents.js +40 -0
- package/backend/constants/triggers.js +6 -14
- package/backend/entrypoint.sh +1 -13
- package/backend/lib/authHeader.js +16 -0
- package/backend/lib/globalRegistry.js +1 -13
- package/backend/lib/nodeRegister.js +11 -15
- package/backend/lib/reportFilename.js +1 -13
- package/backend/lib/retryRunner.js +1 -13
- package/backend/lib/runnerProcess.js +5 -16
- package/backend/lib/screenshotPoller.js +1 -13
- package/backend/lib/serverBootstrap.js +189 -0
- package/backend/lib/serverConfig.js +1 -13
- package/backend/lib/testChunker.js +1 -13
- package/backend/lib/testEnv.js +1 -13
- package/backend/mcp/server.js +5 -15
- package/backend/middleware/auth.js +4 -14
- package/backend/middleware/jwtAuth.js +16 -18
- package/backend/middleware/requireAdmin.js +1 -13
- package/backend/package.json +3 -3
- package/backend/playwright.config.js +1 -13
- package/backend/routes/active-runs.routes.js +18 -0
- package/backend/routes/auth.routes.js +1 -13
- package/backend/routes/backup.routes.js +10 -21
- package/backend/routes/cron.routes.js +1 -13
- package/backend/routes/node.routes.js +11 -148
- package/backend/routes/reports.routes.js +1 -13
- package/backend/routes/runners.routes.js +11 -21
- package/backend/routes/settings.routes.js +6 -17
- package/backend/routes/test-cases.routes.js +1 -13
- package/backend/routes/test-runs.routes.js +1 -13
- package/backend/routes/test-suites.routes.js +1 -13
- package/backend/routes/tests.routes.js +1 -13
- package/backend/routes/trigger.routes.js +23 -165
- package/backend/routes/users.routes.js +1 -13
- package/backend/scripts/manage-runners.mjs +19 -17
- package/backend/server.js +34 -151
- package/backend/services/activeRunsService.js +55 -0
- package/backend/services/backupCronService.js +1 -13
- package/backend/services/backupService.js +7 -17
- package/backend/services/cronService.js +57 -39
- package/backend/services/envService.js +1 -13
- package/backend/services/nodeExecutionService.js +140 -0
- package/backend/services/notificationService.js +7 -17
- package/backend/services/prisma.js +1 -13
- package/backend/services/reportService.js +21 -17
- package/backend/services/runnerService.js +46 -27
- package/backend/services/settingsService.js +19 -19
- package/backend/services/testCaseService.js +1 -13
- package/backend/services/testRunService.js +1 -13
- package/backend/services/testService.js +1 -13
- package/backend/services/testSuiteService.js +1 -13
- package/backend/services/triggerService.js +246 -0
- package/backend/services/userService.js +1 -13
- package/backend/websockets/socketHandler.js +99 -48
- package/bin/plum.js +1 -13
- package/bin/postinstall.js +1 -13
- package/bin/scaffold-tests.js +1 -13
- package/docker-compose.node.yml +1 -13
- package/docker-compose.yml +2 -13
- package/frontend/.svelte-kit/adapter-node/.vite/manifest.json +3 -3
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/BackLink.CvWWuO3h.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/Badge.D1SV0Gv7.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/ConfirmModal.Dd3uP-Sk.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/EmptyState.DUDM4P19.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/Modal.BuaCfdLj.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/Pagination.DZmi2Po-.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/Toast.DENwYn3g.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_layout.BuhMvMUj.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.0Eln51hV.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.5IJAEAjc.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.BR3wgXcZ.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.BWAH0Beh.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.BZfe6nWe.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.Bj_a_5lv.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.BwgOqeMo.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.CBHi6pzT.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.CFnbmY-D.css +0 -17
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.DvMkmYA-.css +6 -0
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page._h2o67kg.css +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/BackLink.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/Badge.js +1 -18
- package/frontend/.svelte-kit/adapter-node/chunks/ConfirmModal.js +1 -18
- package/frontend/.svelte-kit/adapter-node/chunks/EmptyState.js +2 -19
- package/frontend/.svelte-kit/adapter-node/chunks/Modal.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/Toast.js +1 -18
- package/frontend/.svelte-kit/adapter-node/chunks/attributes.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/auth.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/auth2.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/client.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/common.js +9 -24
- package/frontend/.svelte-kit/adapter-node/chunks/constants.js +4 -18
- package/frontend/.svelte-kit/adapter-node/chunks/escaping.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/exports.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/format.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/index-server.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/index.js +4 -21
- package/frontend/.svelte-kit/adapter-node/chunks/index2.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/internal.js +1 -18
- package/frontend/.svelte-kit/adapter-node/chunks/reports.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/reports2.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/repository.js +10 -29
- package/frontend/.svelte-kit/adapter-node/chunks/runner.js +2 -20
- package/frontend/.svelte-kit/adapter-node/chunks/stores.js +0 -17
- package/frontend/.svelte-kit/adapter-node/chunks/theme.js +0 -17
- package/frontend/.svelte-kit/adapter-node/entries/fallbacks/error.svelte.js +0 -17
- package/frontend/.svelte-kit/adapter-node/entries/pages/_layout.js +0 -17
- package/frontend/.svelte-kit/adapter-node/entries/pages/_layout.svelte.js +0 -17
- package/frontend/.svelte-kit/adapter-node/entries/pages/_page.svelte.js +114 -98
- package/frontend/.svelte-kit/adapter-node/entries/pages/login/_page.svelte.js +1 -18
- package/frontend/.svelte-kit/adapter-node/entries/pages/reports/_id_/_page.svelte.js +1 -18
- package/frontend/.svelte-kit/adapter-node/entries/pages/reports/_page.svelte.js +1 -18
- package/frontend/.svelte-kit/adapter-node/entries/pages/reports/live/_page.svelte.js +1 -18
- package/frontend/.svelte-kit/adapter-node/entries/pages/scheduled-tests/_page.svelte.js +1 -18
- package/frontend/.svelte-kit/adapter-node/entries/pages/settings/_page.svelte.js +2 -19
- package/frontend/.svelte-kit/adapter-node/entries/pages/setup/_page.svelte.js +1 -18
- package/frontend/.svelte-kit/adapter-node/entries/pages/test-repository/_page.svelte.js +3 -20
- package/frontend/.svelte-kit/adapter-node/entries/pages/test-repository/runs/_id_/_page.svelte.js +3 -20
- package/frontend/.svelte-kit/adapter-node/entries/pages/test-repository/suites/_id_/_page.svelte.js +3 -20
- package/frontend/.svelte-kit/adapter-node/index.js +0 -17
- package/frontend/.svelte-kit/adapter-node/internal.js +0 -17
- package/frontend/.svelte-kit/adapter-node/manifest-full.js +1 -18
- package/frontend/.svelte-kit/adapter-node/manifest.js +1 -18
- package/frontend/.svelte-kit/adapter-node/nodes/0.js +1 -18
- package/frontend/.svelte-kit/adapter-node/nodes/1.js +1 -18
- package/frontend/.svelte-kit/adapter-node/nodes/10.js +1 -18
- package/frontend/.svelte-kit/adapter-node/nodes/11.js +1 -18
- package/frontend/.svelte-kit/adapter-node/nodes/12.js +1 -18
- package/frontend/.svelte-kit/adapter-node/nodes/2.js +2 -19
- package/frontend/.svelte-kit/adapter-node/nodes/3.js +1 -18
- package/frontend/.svelte-kit/adapter-node/nodes/4.js +1 -18
- package/frontend/.svelte-kit/adapter-node/nodes/5.js +1 -18
- package/frontend/.svelte-kit/adapter-node/nodes/6.js +1 -18
- package/frontend/.svelte-kit/adapter-node/nodes/7.js +1 -18
- package/frontend/.svelte-kit/adapter-node/nodes/8.js +1 -18
- package/frontend/.svelte-kit/adapter-node/nodes/9.js +1 -18
- package/frontend/.svelte-kit/ambient.d.ts +2 -17
- package/frontend/.svelte-kit/generated/client/app.js +0 -17
- package/frontend/.svelte-kit/generated/client/matchers.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/0.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/1.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/10.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/11.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/12.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/2.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/3.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/4.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/5.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/6.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/7.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/8.js +0 -17
- package/frontend/.svelte-kit/generated/client/nodes/9.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/app.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/matchers.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/0.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/1.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/10.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/11.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/12.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/2.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/3.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/4.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/5.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/6.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/7.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/8.js +0 -17
- package/frontend/.svelte-kit/generated/client-optimized/nodes/9.js +0 -17
- package/frontend/.svelte-kit/generated/root.js +0 -17
- package/frontend/.svelte-kit/generated/root.svelte +0 -17
- package/frontend/.svelte-kit/generated/server/internal.js +1 -18
- package/frontend/.svelte-kit/non-ambient.d.ts +0 -17
- package/frontend/.svelte-kit/output/client/.vite/manifest.json +225 -224
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/0.BhSG-jZH.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/10.CdaQUS6U.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/11.BWAH0Beh.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/12.Bj_a_5lv.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/2.DvMkmYA-.css +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/3.BR3wgXcZ.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/4.0Eln51hV.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/5.DFV9OgAu.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/6.CFnbmY-D.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/7.CBHi6pzT.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/8.BwgOqeMo.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/9._h2o67kg.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/BackLink.CvWWuO3h.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/Badge.D1SV0Gv7.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/Button.FOWXxvc7.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/ConfirmModal.Dd3uP-Sk.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/EmptyState.DUDM4P19.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/Modal.BZpm0HP8.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/Modal.BuaCfdLj.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/Pagination.DZmi2Po-.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/Toast.DENwYn3g.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_layout.BuhMvMUj.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.0Eln51hV.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.5IJAEAjc.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.BR3wgXcZ.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.BWAH0Beh.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.BZfe6nWe.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.Bj_a_5lv.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.BwgOqeMo.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.CBHi6pzT.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.CFnbmY-D.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.DvMkmYA-.css +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page._h2o67kg.css +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/2zMvi6fR.js +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/{D2cvzNT9.js → 3InFPLvE.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/BAACMRH5.js +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/BAMUGSh7.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/BKuh57WU.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/{DkNBSlo2.js → BUwxRmHf.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/Bfc47y5P.js +0 -17
- package/frontend/{build/client/_app/immutable/chunks/DYlaQsvN.js → .svelte-kit/output/client/_app/immutable/chunks/BmZ9upwL.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/C1Vid6wz.js +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/C8OURRSs.js +0 -17
- package/frontend/{build/client/_app/immutable/chunks/oN0Z3NSF.js → .svelte-kit/output/client/_app/immutable/chunks/CGeZlCaI.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CKDtmZUQ.js +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CMBQQ9RZ.js +0 -17
- package/frontend/{build/client/_app/immutable/chunks/BjUpWNbl.js → .svelte-kit/output/client/_app/immutable/chunks/CMEtqUfQ.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CNdcuGR0.js +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CUC98kMZ.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CgnwuKKO.js +0 -17
- package/frontend/{build/client/_app/immutable/chunks/B98sHkeB.js → .svelte-kit/output/client/_app/immutable/chunks/Co3xKhEp.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/CuqnZUex.js +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/{DlNYZJ7K.js → CzlPaHY9.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/DCgHuuvs.js +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/DHM6H-es.js +7 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/{3IV-uqHa.js → DMZwI8Cj.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/DMyTUV-Y.js +8 -0
- package/frontend/{build/client/_app/immutable/chunks/D2gYTmAA.js → .svelte-kit/output/client/_app/immutable/chunks/DSLBMEpr.js} +1 -18
- package/frontend/{build/client/_app/immutable/chunks/DDblTLLE.js → .svelte-kit/output/client/_app/immutable/chunks/DbgD7JLa.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/Dlnxgs49.js +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/TOCyHP97.js +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/nURnIknV.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/t-La0hgu.js +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/w0D4Uzlq.js +0 -17
- package/frontend/.svelte-kit/output/client/_app/immutable/entry/{app.BCWbw5zZ.js → app.BkBD0hgA.js} +2 -19
- package/frontend/.svelte-kit/output/client/_app/immutable/entry/start.BxeX1Uxs.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/0.ChjDHxSJ.js +11 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/1.DBSWa36f.js +6 -0
- package/frontend/{build/client/_app/immutable/nodes/10.Bn4Ma-MU.js → .svelte-kit/output/client/_app/immutable/nodes/10.DEbnxfND.js} +1 -18
- package/frontend/{build/client/_app/immutable/nodes/11.BacEu7sW.js → .svelte-kit/output/client/_app/immutable/nodes/11.O4cjXCg4.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/12.BWQdeRdX.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/2.BnHalSCi.js +6 -0
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/{3.DHx0kho3.js → 3._S1vrLVF.js} +1 -18
- package/frontend/{build/client/_app/immutable/nodes/4.CnaMiirx.js → .svelte-kit/output/client/_app/immutable/nodes/4.D-YT_JJe.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/{5.B6m-zTVe.js → 5.BiFBiWcW.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/{6.BPDag1zv.js → 6.BNS-W0R_.js} +1 -18
- package/frontend/{build/client/_app/immutable/nodes/7.D7LwxSvT.js → .svelte-kit/output/client/_app/immutable/nodes/7.C-pKvVZy.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/{8.CCkNX20G.js → 8.BEUdazrw.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/{9.HDerA6JV.js → 9.CrLHYPEJ.js} +1 -18
- package/frontend/.svelte-kit/output/client/_app/version.json +1 -1
- package/frontend/.svelte-kit/output/server/.vite/manifest.json +3 -3
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/BackLink.CvWWuO3h.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/Badge.D1SV0Gv7.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/ConfirmModal.Dd3uP-Sk.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/EmptyState.DUDM4P19.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/Modal.BuaCfdLj.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/Pagination.DZmi2Po-.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/Toast.DENwYn3g.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_layout.BuhMvMUj.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.0Eln51hV.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.5IJAEAjc.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.BR3wgXcZ.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.BWAH0Beh.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.BZfe6nWe.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.Bj_a_5lv.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.BwgOqeMo.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.CBHi6pzT.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.CFnbmY-D.css +0 -17
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.DvMkmYA-.css +6 -0
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page._h2o67kg.css +0 -17
- package/frontend/.svelte-kit/output/server/chunks/BackLink.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/Badge.js +1 -18
- package/frontend/.svelte-kit/output/server/chunks/ConfirmModal.js +1 -18
- package/frontend/.svelte-kit/output/server/chunks/EmptyState.js +2 -19
- package/frontend/.svelte-kit/output/server/chunks/Modal.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/Toast.js +1 -18
- package/frontend/.svelte-kit/output/server/chunks/attributes.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/auth.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/auth2.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/client.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/common.js +9 -24
- package/frontend/.svelte-kit/output/server/chunks/constants.js +4 -18
- package/frontend/.svelte-kit/output/server/chunks/escaping.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/exports.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/format.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/index-server.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/index.js +4 -21
- package/frontend/.svelte-kit/output/server/chunks/index2.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/internal.js +1 -18
- package/frontend/.svelte-kit/output/server/chunks/reports.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/reports2.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/repository.js +10 -29
- package/frontend/.svelte-kit/output/server/chunks/runner.js +2 -20
- package/frontend/.svelte-kit/output/server/chunks/stores.js +0 -17
- package/frontend/.svelte-kit/output/server/chunks/theme.js +0 -17
- package/frontend/.svelte-kit/output/server/entries/fallbacks/error.svelte.js +0 -17
- package/frontend/.svelte-kit/output/server/entries/pages/_layout.js +0 -17
- package/frontend/.svelte-kit/output/server/entries/pages/_layout.svelte.js +0 -17
- package/frontend/.svelte-kit/output/server/entries/pages/_page.svelte.js +114 -98
- package/frontend/.svelte-kit/output/server/entries/pages/login/_page.svelte.js +1 -18
- package/frontend/.svelte-kit/output/server/entries/pages/reports/_id_/_page.svelte.js +1 -18
- package/frontend/.svelte-kit/output/server/entries/pages/reports/_page.svelte.js +1 -18
- package/frontend/.svelte-kit/output/server/entries/pages/reports/live/_page.svelte.js +1 -18
- package/frontend/.svelte-kit/output/server/entries/pages/scheduled-tests/_page.svelte.js +1 -18
- package/frontend/.svelte-kit/output/server/entries/pages/settings/_page.svelte.js +2 -19
- package/frontend/.svelte-kit/output/server/entries/pages/setup/_page.svelte.js +1 -18
- package/frontend/.svelte-kit/output/server/entries/pages/test-repository/_page.svelte.js +3 -20
- package/frontend/.svelte-kit/output/server/entries/pages/test-repository/runs/_id_/_page.svelte.js +3 -20
- package/frontend/.svelte-kit/output/server/entries/pages/test-repository/suites/_id_/_page.svelte.js +3 -20
- package/frontend/.svelte-kit/output/server/index.js +0 -17
- package/frontend/.svelte-kit/output/server/internal.js +0 -17
- package/frontend/.svelte-kit/output/server/manifest-full.js +1 -18
- package/frontend/.svelte-kit/output/server/manifest.js +1 -18
- package/frontend/.svelte-kit/output/server/nodes/0.js +1 -18
- package/frontend/.svelte-kit/output/server/nodes/1.js +1 -18
- package/frontend/.svelte-kit/output/server/nodes/10.js +1 -18
- package/frontend/.svelte-kit/output/server/nodes/11.js +1 -18
- package/frontend/.svelte-kit/output/server/nodes/12.js +1 -18
- package/frontend/.svelte-kit/output/server/nodes/2.js +2 -19
- package/frontend/.svelte-kit/output/server/nodes/3.js +1 -18
- package/frontend/.svelte-kit/output/server/nodes/4.js +1 -18
- package/frontend/.svelte-kit/output/server/nodes/5.js +1 -18
- package/frontend/.svelte-kit/output/server/nodes/6.js +1 -18
- package/frontend/.svelte-kit/output/server/nodes/7.js +1 -18
- package/frontend/.svelte-kit/output/server/nodes/8.js +1 -18
- package/frontend/.svelte-kit/output/server/nodes/9.js +1 -18
- package/frontend/Dockerfile +1 -13
- package/frontend/build/client/_app/immutable/assets/0.BhSG-jZH.css +0 -17
- package/frontend/build/client/_app/immutable/assets/0.BhSG-jZH.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/0.BhSG-jZH.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/10.CdaQUS6U.css +0 -17
- package/frontend/build/client/_app/immutable/assets/10.CdaQUS6U.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/10.CdaQUS6U.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/11.BWAH0Beh.css +0 -17
- package/frontend/build/client/_app/immutable/assets/11.BWAH0Beh.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/11.BWAH0Beh.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/12.Bj_a_5lv.css +0 -17
- package/frontend/build/client/_app/immutable/assets/12.Bj_a_5lv.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/12.Bj_a_5lv.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/2.DvMkmYA-.css +6 -0
- package/frontend/build/client/_app/immutable/assets/2.DvMkmYA-.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/2.DvMkmYA-.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/3.BR3wgXcZ.css +0 -17
- package/frontend/build/client/_app/immutable/assets/3.BR3wgXcZ.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/3.BR3wgXcZ.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/4.0Eln51hV.css +0 -17
- package/frontend/build/client/_app/immutable/assets/4.0Eln51hV.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/4.0Eln51hV.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/5.DFV9OgAu.css +0 -17
- package/frontend/build/client/_app/immutable/assets/5.DFV9OgAu.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/5.DFV9OgAu.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/6.CFnbmY-D.css +0 -17
- package/frontend/build/client/_app/immutable/assets/6.CFnbmY-D.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/6.CFnbmY-D.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/7.CBHi6pzT.css +0 -17
- package/frontend/build/client/_app/immutable/assets/7.CBHi6pzT.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/7.CBHi6pzT.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/8.BwgOqeMo.css +0 -17
- package/frontend/build/client/_app/immutable/assets/8.BwgOqeMo.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/8.BwgOqeMo.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/9._h2o67kg.css +0 -17
- package/frontend/build/client/_app/immutable/assets/9._h2o67kg.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/9._h2o67kg.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/BackLink.CvWWuO3h.css +0 -17
- package/frontend/build/client/_app/immutable/assets/BackLink.CvWWuO3h.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/BackLink.CvWWuO3h.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/Badge.D1SV0Gv7.css +0 -17
- package/frontend/build/client/_app/immutable/assets/Badge.D1SV0Gv7.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/Badge.D1SV0Gv7.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/Button.FOWXxvc7.css +0 -17
- package/frontend/build/client/_app/immutable/assets/Button.FOWXxvc7.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/Button.FOWXxvc7.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/ConfirmModal.Dd3uP-Sk.css +0 -17
- package/frontend/build/client/_app/immutable/assets/ConfirmModal.Dd3uP-Sk.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/ConfirmModal.Dd3uP-Sk.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/EmptyState.DUDM4P19.css +0 -17
- package/frontend/build/client/_app/immutable/assets/EmptyState.DUDM4P19.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/EmptyState.DUDM4P19.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/Modal.BZpm0HP8.css +0 -17
- package/frontend/build/client/_app/immutable/assets/Modal.BZpm0HP8.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/Modal.BZpm0HP8.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/Modal.BuaCfdLj.css +0 -17
- package/frontend/build/client/_app/immutable/assets/Modal.BuaCfdLj.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/Modal.BuaCfdLj.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/Pagination.DZmi2Po-.css +0 -17
- package/frontend/build/client/_app/immutable/assets/Pagination.DZmi2Po-.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/Pagination.DZmi2Po-.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/Toast.DENwYn3g.css +0 -17
- package/frontend/build/client/_app/immutable/assets/Toast.DENwYn3g.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/Toast.DENwYn3g.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_layout.BuhMvMUj.css +0 -17
- package/frontend/build/client/_app/immutable/assets/_layout.BuhMvMUj.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_layout.BuhMvMUj.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.0Eln51hV.css +0 -17
- package/frontend/build/client/_app/immutable/assets/_page.0Eln51hV.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.0Eln51hV.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.5IJAEAjc.css +0 -17
- package/frontend/build/client/_app/immutable/assets/_page.5IJAEAjc.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.5IJAEAjc.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BR3wgXcZ.css +0 -17
- package/frontend/build/client/_app/immutable/assets/_page.BR3wgXcZ.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BR3wgXcZ.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BWAH0Beh.css +0 -17
- package/frontend/build/client/_app/immutable/assets/_page.BWAH0Beh.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BWAH0Beh.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BZfe6nWe.css +0 -17
- package/frontend/build/client/_app/immutable/assets/_page.BZfe6nWe.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BZfe6nWe.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.Bj_a_5lv.css +0 -17
- package/frontend/build/client/_app/immutable/assets/_page.Bj_a_5lv.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.Bj_a_5lv.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BwgOqeMo.css +0 -17
- package/frontend/build/client/_app/immutable/assets/_page.BwgOqeMo.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.BwgOqeMo.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.CBHi6pzT.css +0 -17
- package/frontend/build/client/_app/immutable/assets/_page.CBHi6pzT.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.CBHi6pzT.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.CFnbmY-D.css +0 -17
- package/frontend/build/client/_app/immutable/assets/_page.CFnbmY-D.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.CFnbmY-D.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.DvMkmYA-.css +6 -0
- package/frontend/build/client/_app/immutable/assets/_page.DvMkmYA-.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.DvMkmYA-.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page._h2o67kg.css +0 -17
- package/frontend/build/client/_app/immutable/assets/_page._h2o67kg.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page._h2o67kg.css.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/2zMvi6fR.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/2zMvi6fR.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/2zMvi6fR.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/{D2cvzNT9.js → 3InFPLvE.js} +1 -18
- package/frontend/build/client/_app/immutable/chunks/3InFPLvE.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/3InFPLvE.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BAACMRH5.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/BAACMRH5.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BAACMRH5.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BAMUGSh7.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/BAMUGSh7.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BAMUGSh7.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BKuh57WU.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/BKuh57WU.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BKuh57WU.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/{DkNBSlo2.js → BUwxRmHf.js} +1 -18
- package/frontend/build/client/_app/immutable/chunks/BUwxRmHf.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BUwxRmHf.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/Bfc47y5P.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/Bfc47y5P.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/Bfc47y5P.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/chunks/DYlaQsvN.js → build/client/_app/immutable/chunks/BmZ9upwL.js} +1 -18
- package/frontend/build/client/_app/immutable/chunks/BmZ9upwL.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BmZ9upwL.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/C1Vid6wz.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/C1Vid6wz.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/C1Vid6wz.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/C8OURRSs.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/C8OURRSs.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/C8OURRSs.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/chunks/oN0Z3NSF.js → build/client/_app/immutable/chunks/CGeZlCaI.js} +1 -18
- package/frontend/build/client/_app/immutable/chunks/CGeZlCaI.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CGeZlCaI.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CKDtmZUQ.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/CKDtmZUQ.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CKDtmZUQ.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CMBQQ9RZ.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/CMBQQ9RZ.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CMBQQ9RZ.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/chunks/BjUpWNbl.js → build/client/_app/immutable/chunks/CMEtqUfQ.js} +1 -18
- package/frontend/build/client/_app/immutable/chunks/CMEtqUfQ.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CMEtqUfQ.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CNdcuGR0.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/CNdcuGR0.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CNdcuGR0.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CUC98kMZ.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/CUC98kMZ.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CUC98kMZ.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CgnwuKKO.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/CgnwuKKO.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CgnwuKKO.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/chunks/B98sHkeB.js → build/client/_app/immutable/chunks/Co3xKhEp.js} +1 -18
- package/frontend/build/client/_app/immutable/chunks/Co3xKhEp.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/Co3xKhEp.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/CuqnZUex.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/CuqnZUex.js.br +0 -16
- package/frontend/build/client/_app/immutable/chunks/CuqnZUex.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/{DlNYZJ7K.js → CzlPaHY9.js} +1 -18
- package/frontend/build/client/_app/immutable/chunks/CzlPaHY9.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/CzlPaHY9.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DCgHuuvs.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/DCgHuuvs.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DCgHuuvs.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DHM6H-es.js +7 -0
- package/frontend/build/client/_app/immutable/chunks/DHM6H-es.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DHM6H-es.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/{3IV-uqHa.js → DMZwI8Cj.js} +1 -18
- package/frontend/build/client/_app/immutable/chunks/DMZwI8Cj.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DMZwI8Cj.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DMyTUV-Y.js +8 -0
- package/frontend/build/client/_app/immutable/chunks/DMyTUV-Y.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DMyTUV-Y.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/chunks/D2gYTmAA.js → build/client/_app/immutable/chunks/DSLBMEpr.js} +1 -18
- package/frontend/build/client/_app/immutable/chunks/DSLBMEpr.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DSLBMEpr.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/chunks/DDblTLLE.js → build/client/_app/immutable/chunks/DbgD7JLa.js} +1 -18
- package/frontend/build/client/_app/immutable/chunks/DbgD7JLa.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DbgD7JLa.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/Dlnxgs49.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/Dlnxgs49.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/Dlnxgs49.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/TOCyHP97.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/TOCyHP97.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/TOCyHP97.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/nURnIknV.js +6 -0
- package/frontend/build/client/_app/immutable/chunks/nURnIknV.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/nURnIknV.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/t-La0hgu.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/t-La0hgu.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/t-La0hgu.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/w0D4Uzlq.js +0 -17
- package/frontend/build/client/_app/immutable/chunks/w0D4Uzlq.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/w0D4Uzlq.js.gz +0 -0
- package/frontend/build/client/_app/immutable/entry/{app.BCWbw5zZ.js → app.BkBD0hgA.js} +2 -19
- package/frontend/build/client/_app/immutable/entry/app.BkBD0hgA.js.br +0 -0
- package/frontend/build/client/_app/immutable/entry/app.BkBD0hgA.js.gz +0 -0
- package/frontend/build/client/_app/immutable/entry/start.BxeX1Uxs.js +6 -0
- package/frontend/build/client/_app/immutable/entry/start.BxeX1Uxs.js.br +6 -0
- package/frontend/build/client/_app/immutable/entry/start.BxeX1Uxs.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/0.ChjDHxSJ.js +11 -0
- package/frontend/build/client/_app/immutable/nodes/0.ChjDHxSJ.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/0.ChjDHxSJ.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/1.DBSWa36f.js +6 -0
- package/frontend/build/client/_app/immutable/nodes/1.DBSWa36f.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/1.DBSWa36f.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/nodes/10.Bn4Ma-MU.js → build/client/_app/immutable/nodes/10.DEbnxfND.js} +1 -18
- package/frontend/build/client/_app/immutable/nodes/10.DEbnxfND.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/10.DEbnxfND.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/nodes/11.BacEu7sW.js → build/client/_app/immutable/nodes/11.O4cjXCg4.js} +1 -18
- package/frontend/build/client/_app/immutable/nodes/11.O4cjXCg4.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/11.O4cjXCg4.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/12.BWQdeRdX.js +6 -0
- package/frontend/build/client/_app/immutable/nodes/12.BWQdeRdX.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/12.BWQdeRdX.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/2.BnHalSCi.js +6 -0
- package/frontend/build/client/_app/immutable/nodes/2.BnHalSCi.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/2.BnHalSCi.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/{3.DHx0kho3.js → 3._S1vrLVF.js} +1 -18
- package/frontend/build/client/_app/immutable/nodes/3._S1vrLVF.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/3._S1vrLVF.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/nodes/4.CnaMiirx.js → build/client/_app/immutable/nodes/4.D-YT_JJe.js} +1 -18
- package/frontend/build/client/_app/immutable/nodes/4.D-YT_JJe.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/4.D-YT_JJe.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/{5.B6m-zTVe.js → 5.BiFBiWcW.js} +1 -18
- package/frontend/build/client/_app/immutable/nodes/5.BiFBiWcW.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/5.BiFBiWcW.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/{6.BPDag1zv.js → 6.BNS-W0R_.js} +1 -18
- package/frontend/build/client/_app/immutable/nodes/6.BNS-W0R_.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/6.BNS-W0R_.js.gz +0 -0
- package/frontend/{.svelte-kit/output/client/_app/immutable/nodes/7.D7LwxSvT.js → build/client/_app/immutable/nodes/7.C-pKvVZy.js} +1 -18
- package/frontend/build/client/_app/immutable/nodes/7.C-pKvVZy.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/7.C-pKvVZy.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/{8.CCkNX20G.js → 8.BEUdazrw.js} +1 -18
- package/frontend/build/client/_app/immutable/nodes/8.BEUdazrw.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/8.BEUdazrw.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/{9.HDerA6JV.js → 9.CrLHYPEJ.js} +1 -18
- package/frontend/build/client/_app/immutable/nodes/9.CrLHYPEJ.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/9.CrLHYPEJ.js.gz +0 -0
- package/frontend/build/client/_app/version.json +1 -1
- package/frontend/build/client/_app/version.json.br +0 -0
- package/frontend/build/client/_app/version.json.gz +0 -0
- package/frontend/build/env.js +0 -17
- package/frontend/build/handler.js +0 -17
- package/frontend/build/index.js +0 -17
- package/frontend/build/server/chunks/0-Cn_2hzqk.js +22 -0
- package/frontend/build/server/chunks/0-Cn_2hzqk.js.map +5 -0
- package/frontend/build/server/chunks/1-BrRGJFSB.js +14 -0
- package/frontend/build/server/chunks/1-BrRGJFSB.js.map +5 -0
- package/frontend/build/server/chunks/10-l6_ikL_D.js +14 -0
- package/frontend/build/server/chunks/{10-Bhe409bL.js.map → 10-l6_ikL_D.js.map} +1 -17
- package/frontend/build/server/chunks/11-BLPbHJqB.js +14 -0
- package/frontend/build/server/chunks/{11-DqyXW7n1.js.map → 11-BLPbHJqB.js.map} +1 -17
- package/frontend/build/server/chunks/12-S1ujUrHy.js +14 -0
- package/frontend/build/server/chunks/{12-BCpjMUbs.js.map → 12-S1ujUrHy.js.map} +1 -17
- package/frontend/build/server/chunks/2-Cte30Dgy.js +14 -0
- package/frontend/build/server/chunks/2-Cte30Dgy.js.map +5 -0
- package/frontend/build/server/chunks/3-BHkXVoNI.js +14 -0
- package/frontend/build/server/chunks/{3-y2kzPO2X.js.map → 3-BHkXVoNI.js.map} +1 -17
- package/frontend/build/server/chunks/4-Bo04DC5Z.js +14 -0
- package/frontend/build/server/chunks/4-Bo04DC5Z.js.map +5 -0
- package/frontend/build/server/chunks/5-F1ZsXMt2.js +14 -0
- package/frontend/build/server/chunks/5-F1ZsXMt2.js.map +5 -0
- package/frontend/build/server/chunks/6-FlZLnYJ6.js +14 -0
- package/frontend/build/server/chunks/6-FlZLnYJ6.js.map +5 -0
- package/frontend/build/server/chunks/7-DiQJZEF_.js +14 -0
- package/frontend/build/server/chunks/{7-DekQfQHu.js.map → 7-DiQJZEF_.js.map} +1 -17
- package/frontend/build/server/chunks/8-DXReUGxi.js +14 -0
- package/frontend/build/server/chunks/8-DXReUGxi.js.map +5 -0
- package/frontend/build/server/chunks/9-Cy_mGmt4.js +14 -0
- package/frontend/build/server/chunks/{9-C5sKo9aY.js.map → 9-Cy_mGmt4.js.map} +1 -17
- package/frontend/build/server/chunks/{BackLink-KxZNqsaq.js → BackLink-BJ8NaemM.js} +2 -19
- package/frontend/build/server/chunks/{BackLink-KxZNqsaq.js.map → BackLink-BJ8NaemM.js.map} +1 -17
- package/frontend/build/server/chunks/Badge-44ZTDx0V.js +18 -0
- package/frontend/build/server/chunks/{Badge-B5V-z6pI.js.map → Badge-44ZTDx0V.js.map} +1 -17
- package/frontend/build/server/chunks/{ConfirmModal-Ckkt99Pn.js → ConfirmModal-C0EAXcq_.js} +4 -21
- package/frontend/build/server/chunks/{ConfirmModal-Ckkt99Pn.js.map → ConfirmModal-C0EAXcq_.js.map} +1 -17
- package/frontend/build/server/chunks/{EmptyState-BwwbShnX.js → EmptyState-BA_eXaeR.js} +3 -20
- package/frontend/build/server/chunks/{EmptyState-BwwbShnX.js.map → EmptyState-BA_eXaeR.js.map} +1 -17
- package/frontend/build/server/chunks/{Modal-DG-6c5si.js → Modal-DChG187n.js} +2 -19
- package/frontend/build/server/chunks/{Modal-DG-6c5si.js.map → Modal-DChG187n.js.map} +1 -17
- package/frontend/build/server/chunks/{Toast-CIG4edEp.js → Toast-v-q4ZnYq.js} +2 -19
- package/frontend/build/server/chunks/{Toast-CIG4edEp.js.map → Toast-v-q4ZnYq.js.map} +1 -17
- package/frontend/build/server/chunks/_layout.svelte-CHVI3Prt.js +29 -0
- package/frontend/build/server/chunks/{_layout.svelte-BjPrZpoG.js.map → _layout.svelte-CHVI3Prt.js.map} +1 -17
- package/frontend/build/server/chunks/{_page.svelte-BbZNxvCl.js → _page.svelte-1as75nPc.js} +14 -30
- package/frontend/build/server/chunks/{_page.svelte-BbZNxvCl.js.map → _page.svelte-1as75nPc.js.map} +1 -17
- package/frontend/build/server/chunks/{_page.svelte-CLFpft5D.js → _page.svelte-1jo8MapI.js} +11 -28
- package/frontend/build/server/chunks/{_page.svelte-CLFpft5D.js.map → _page.svelte-1jo8MapI.js.map} +1 -17
- package/frontend/build/server/chunks/{_page.svelte-BHw14GPR.js → _page.svelte-BuFusRK1.js} +12 -29
- package/frontend/build/server/chunks/{_page.svelte-BHw14GPR.js.map → _page.svelte-BuFusRK1.js.map} +1 -17
- package/frontend/build/server/chunks/{_page.svelte-D78qaBDN.js → _page.svelte-CAVyp70V.js} +14 -30
- package/frontend/build/server/chunks/{_page.svelte-D78qaBDN.js.map → _page.svelte-CAVyp70V.js.map} +1 -17
- package/frontend/build/server/chunks/{_page.svelte-D2oF79cT.js → _page.svelte-CB8-QBNg.js} +11 -28
- package/frontend/build/server/chunks/{_page.svelte-D2oF79cT.js.map → _page.svelte-CB8-QBNg.js.map} +1 -17
- package/frontend/build/server/chunks/{_page.svelte-DyyuZN_3.js → _page.svelte-CWWeZuid.js} +11 -28
- package/frontend/build/server/chunks/{_page.svelte-DyyuZN_3.js.map → _page.svelte-CWWeZuid.js.map} +1 -17
- package/frontend/build/server/chunks/_page.svelte-CpB-fgJl.js +224 -0
- package/frontend/build/server/chunks/_page.svelte-CpB-fgJl.js.map +5 -0
- package/frontend/build/server/chunks/_page.svelte-D3E6Eojd.js +32 -0
- package/frontend/build/server/chunks/{_page.svelte-B9rjnZWE.js.map → _page.svelte-D3E6Eojd.js.map} +1 -17
- package/frontend/build/server/chunks/_page.svelte-Kg69DDaM.js +32 -0
- package/frontend/build/server/chunks/{_page.svelte-D1aYn1PL.js.map → _page.svelte-Kg69DDaM.js.map} +1 -17
- package/frontend/build/server/chunks/{_page.svelte-ubW5EUCf.js → _page.svelte-L9fuiN_q.js} +10 -27
- package/frontend/build/server/chunks/{_page.svelte-ubW5EUCf.js.map → _page.svelte-L9fuiN_q.js.map} +1 -17
- package/frontend/build/server/chunks/{_page.svelte-Cr16HubD.js → _page.svelte-wKyUmA2e.js} +12 -29
- package/frontend/build/server/chunks/{_page.svelte-Cr16HubD.js.map → _page.svelte-wKyUmA2e.js.map} +1 -17
- package/frontend/build/server/chunks/attributes-BeaNKpgU.js +0 -17
- package/frontend/build/server/chunks/attributes-BeaNKpgU.js.map +0 -16
- package/frontend/build/server/chunks/{auth-rlH-cIzn.js → auth-Chw-wBpI.js} +2 -19
- package/frontend/build/server/chunks/{auth-rlH-cIzn.js.map → auth-Chw-wBpI.js.map} +1 -17
- package/frontend/build/server/chunks/auth2-C02yYDpz.js +0 -17
- package/frontend/build/server/chunks/auth2-C02yYDpz.js.map +0 -16
- package/frontend/build/server/chunks/{client-DyII78e0.js → client-DEmxR_a-.js} +2 -19
- package/frontend/build/server/chunks/{client-DyII78e0.js.map → client-DEmxR_a-.js.map} +1 -17
- package/frontend/build/server/chunks/common-DYYTVHPw.js +26 -0
- package/frontend/build/server/chunks/common-DYYTVHPw.js.map +5 -0
- package/frontend/build/server/chunks/constants-CXTaQaB6.js +27 -0
- package/frontend/build/server/chunks/constants-CXTaQaB6.js.map +5 -0
- package/frontend/build/server/chunks/error.svelte-BD3xNemk.js +33 -0
- package/frontend/build/server/chunks/{error.svelte-BDW3iP1O.js.map → error.svelte-BD3xNemk.js.map} +1 -17
- package/frontend/build/server/chunks/escaping-CqgfEcN3.js +0 -17
- package/frontend/build/server/chunks/escaping-CqgfEcN3.js.map +0 -16
- package/frontend/build/server/chunks/exports-D0QHgeSL.js +0 -17
- package/frontend/build/server/chunks/exports-D0QHgeSL.js.map +0 -16
- package/frontend/build/server/chunks/{format-0SSB1oGG.js → format-CiNRMfHu.js} +2 -19
- package/frontend/build/server/chunks/{format-0SSB1oGG.js.map → format-CiNRMfHu.js.map} +1 -17
- package/frontend/build/server/chunks/index-server-B3M9vyh2.js +19 -0
- package/frontend/build/server/chunks/index-server-B3M9vyh2.js.map +5 -0
- package/frontend/build/server/chunks/{index2-DG8XHU5D.js → index2-5R1tbrep.js} +2 -19
- package/frontend/build/server/chunks/{index2-DG8XHU5D.js.map → index2-5R1tbrep.js.map} +1 -17
- package/frontend/build/server/chunks/{reports-DnYbvluH.js → reports-D_ApeeNh.js} +2 -19
- package/frontend/build/server/chunks/{reports-DnYbvluH.js.map → reports-D_ApeeNh.js.map} +1 -17
- package/frontend/build/server/chunks/{reports2-DR4XlcJg.js → reports2-BtElN_53.js} +2 -19
- package/frontend/build/server/chunks/{reports2-DR4XlcJg.js.map → reports2-BtElN_53.js.map} +1 -17
- package/frontend/build/server/chunks/{repository-D9Derhnk.js → repository-FYYV_vKE.js} +3 -21
- package/frontend/build/server/chunks/repository-FYYV_vKE.js.map +5 -0
- package/frontend/build/server/chunks/{runner-DE5sufZH.js → runner-DC7hXbnY.js} +5 -22
- package/frontend/build/server/chunks/runner-DC7hXbnY.js.map +5 -0
- package/frontend/build/server/chunks/stores-BLenR3c1.js +32 -0
- package/frontend/build/server/chunks/{stores-DlkXV308.js.map → stores-BLenR3c1.js.map} +1 -17
- package/frontend/build/server/chunks/theme-nAx-GvX_.js +15 -0
- package/frontend/build/server/chunks/theme-nAx-GvX_.js.map +5 -0
- package/frontend/build/server/index.js +2 -19
- package/frontend/build/server/index.js.map +1 -17
- package/frontend/build/server/manifest.js +14 -31
- package/frontend/build/server/manifest.js.map +1 -17
- package/frontend/build/shims.js +0 -17
- package/frontend/package.json +1 -0
- package/frontend/src/app.css +1 -13
- package/frontend/src/app.html +1 -13
- package/frontend/src/lib/api/activeRuns.js +18 -0
- package/frontend/src/lib/api/auth.js +1 -13
- package/frontend/src/lib/api/reports.js +1 -13
- package/frontend/src/lib/api/repository.js +1 -13
- package/frontend/src/lib/api/runners.js +26 -21
- package/frontend/src/lib/api/schedules.js +1 -13
- package/frontend/src/lib/api/settings.js +11 -23
- package/frontend/src/lib/api/tests.js +1 -13
- package/frontend/src/lib/api/users.js +1 -13
- package/frontend/src/lib/components/icons/BrowserIcon.svelte +1 -13
- package/frontend/src/lib/components/layout/Nav.svelte +1 -13
- package/frontend/src/lib/components/layout/PageShell.svelte +1 -13
- package/frontend/src/lib/components/layout/RunnerPanel.svelte +146 -105
- package/frontend/src/lib/components/ui/AutomatedBadge.svelte +2 -31
- package/frontend/src/lib/components/ui/BackLink.svelte +1 -30
- package/frontend/src/lib/components/ui/Badge.svelte +1 -13
- package/frontend/src/lib/components/ui/Button.svelte +1 -13
- package/frontend/src/lib/components/ui/CaseIdChip.svelte +1 -30
- package/frontend/src/lib/components/ui/ConfirmModal.svelte +8 -17
- package/frontend/src/lib/components/ui/EmptyState.svelte +26 -15
- package/frontend/src/lib/components/ui/Modal.svelte +1 -13
- package/frontend/src/lib/components/ui/Pagination.svelte +1 -13
- package/frontend/src/lib/components/ui/PriorityBadge.svelte +1 -30
- package/frontend/src/lib/components/ui/ResultChip.svelte +1 -30
- package/frontend/src/lib/components/ui/StatusDot.svelte +1 -30
- package/frontend/src/lib/components/ui/StepKeyword.svelte +1 -30
- package/frontend/src/lib/components/ui/StepStatusIcon.svelte +1 -30
- package/frontend/src/lib/components/ui/TagChip.svelte +1 -30
- package/frontend/src/lib/components/ui/Terminal.svelte +1 -13
- package/frontend/src/lib/components/ui/Toast.svelte +1 -13
- package/frontend/src/lib/constants.js +5 -17
- package/frontend/src/lib/copy/auth.js +29 -0
- package/frontend/src/lib/copy/common.js +39 -0
- package/frontend/src/lib/copy/dashboard.js +28 -0
- package/frontend/src/lib/copy/reports.js +83 -0
- package/frontend/src/lib/copy/repository.js +153 -0
- package/frontend/src/lib/copy/runners.js +59 -0
- package/frontend/src/lib/copy/schedules.js +96 -0
- package/frontend/src/lib/copy/settings.js +295 -0
- package/frontend/src/lib/index.js +1 -13
- package/frontend/src/lib/socketEvents.js +36 -0
- package/frontend/src/lib/stores/auth.js +1 -13
- package/frontend/src/lib/stores/runner.js +10 -18
- package/frontend/src/lib/stores/theme.js +1 -13
- package/frontend/src/lib/styles/global.css +1 -13
- package/frontend/src/lib/styles/reset.css +1 -13
- package/frontend/src/lib/styles/tokens.css +1 -13
- package/frontend/src/lib/utils/format.js +1 -13
- package/frontend/src/routes/+layout.js +1 -13
- package/frontend/src/routes/+layout.svelte +1 -13
- package/frontend/src/routes/+page.svelte +296 -115
- package/frontend/src/routes/login/+page.svelte +22 -23
- package/frontend/src/routes/reports/+page.svelte +37 -38
- package/frontend/src/routes/reports/[id]/+page.svelte +54 -43
- package/frontend/src/routes/reports/live/+page.svelte +57 -42
- package/frontend/src/routes/scheduled-tests/+page.svelte +134 -117
- package/frontend/src/routes/settings/+page.svelte +490 -267
- package/frontend/src/routes/setup/+page.svelte +30 -27
- package/frontend/src/routes/test-repository/+page.svelte +120 -91
- package/frontend/src/routes/test-repository/runs/[id]/+page.svelte +95 -60
- package/frontend/src/routes/test-repository/suites/[id]/+page.svelte +145 -91
- package/frontend/svelte.config.js +1 -13
- package/frontend/vite.config.js +1 -13
- package/package.json +2 -2
- package/resources/mit-license.txt +2 -0
- package/backend/scripts/create-test.js +0 -149
- package/frontend/.svelte-kit/adapter-node/_app/immutable/assets/_page.CrXpMrqh.css +0 -23
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/2.CrXpMrqh.css +0 -23
- package/frontend/.svelte-kit/output/client/_app/immutable/assets/_page.CrXpMrqh.css +0 -23
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/4N1zIH8t.js +0 -23
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/BhvHtTRh.js +0 -23
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/C1sukchk.js +0 -23
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/DW85KPAh.js +0 -24
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/DW_iTTZe.js +0 -23
- package/frontend/.svelte-kit/output/client/_app/immutable/chunks/DtGXv8RA.js +0 -25
- package/frontend/.svelte-kit/output/client/_app/immutable/entry/start.2_AF42wj.js +0 -23
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/0.BAqq2UTE.js +0 -28
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/1.D5VvLtGP.js +0 -23
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/12.0YGtl1uj.js +0 -23
- package/frontend/.svelte-kit/output/client/_app/immutable/nodes/2.C2jjMA-Z.js +0 -23
- package/frontend/.svelte-kit/output/server/_app/immutable/assets/_page.CrXpMrqh.css +0 -23
- package/frontend/build/client/_app/immutable/assets/2.CrXpMrqh.css +0 -23
- package/frontend/build/client/_app/immutable/assets/2.CrXpMrqh.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/2.CrXpMrqh.css.gz +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.CrXpMrqh.css +0 -23
- package/frontend/build/client/_app/immutable/assets/_page.CrXpMrqh.css.br +0 -0
- package/frontend/build/client/_app/immutable/assets/_page.CrXpMrqh.css.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/3IV-uqHa.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/3IV-uqHa.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/4N1zIH8t.js +0 -23
- package/frontend/build/client/_app/immutable/chunks/4N1zIH8t.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/4N1zIH8t.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/B98sHkeB.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/B98sHkeB.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BhvHtTRh.js +0 -23
- package/frontend/build/client/_app/immutable/chunks/BhvHtTRh.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BhvHtTRh.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/BjUpWNbl.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/BjUpWNbl.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/C1sukchk.js +0 -23
- package/frontend/build/client/_app/immutable/chunks/C1sukchk.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/C1sukchk.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/D2cvzNT9.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/D2cvzNT9.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/D2gYTmAA.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/D2gYTmAA.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DDblTLLE.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DDblTLLE.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DW85KPAh.js +0 -24
- package/frontend/build/client/_app/immutable/chunks/DW85KPAh.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DW85KPAh.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DW_iTTZe.js +0 -23
- package/frontend/build/client/_app/immutable/chunks/DW_iTTZe.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DW_iTTZe.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DYlaQsvN.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DYlaQsvN.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DkNBSlo2.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DkNBSlo2.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DlNYZJ7K.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DlNYZJ7K.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/DtGXv8RA.js +0 -25
- package/frontend/build/client/_app/immutable/chunks/DtGXv8RA.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/DtGXv8RA.js.gz +0 -0
- package/frontend/build/client/_app/immutable/chunks/oN0Z3NSF.js.br +0 -0
- package/frontend/build/client/_app/immutable/chunks/oN0Z3NSF.js.gz +0 -0
- package/frontend/build/client/_app/immutable/entry/app.BCWbw5zZ.js.br +0 -0
- package/frontend/build/client/_app/immutable/entry/app.BCWbw5zZ.js.gz +0 -0
- package/frontend/build/client/_app/immutable/entry/start.2_AF42wj.js +0 -23
- package/frontend/build/client/_app/immutable/entry/start.2_AF42wj.js.br +0 -22
- package/frontend/build/client/_app/immutable/entry/start.2_AF42wj.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/0.BAqq2UTE.js +0 -28
- package/frontend/build/client/_app/immutable/nodes/0.BAqq2UTE.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/0.BAqq2UTE.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/1.D5VvLtGP.js +0 -23
- package/frontend/build/client/_app/immutable/nodes/1.D5VvLtGP.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/1.D5VvLtGP.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/10.Bn4Ma-MU.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/10.Bn4Ma-MU.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/11.BacEu7sW.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/11.BacEu7sW.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/12.0YGtl1uj.js +0 -23
- package/frontend/build/client/_app/immutable/nodes/12.0YGtl1uj.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/12.0YGtl1uj.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/2.C2jjMA-Z.js +0 -23
- package/frontend/build/client/_app/immutable/nodes/2.C2jjMA-Z.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/2.C2jjMA-Z.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/3.DHx0kho3.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/3.DHx0kho3.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/4.CnaMiirx.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/4.CnaMiirx.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/5.B6m-zTVe.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/5.B6m-zTVe.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/6.BPDag1zv.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/6.BPDag1zv.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/7.D7LwxSvT.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/7.D7LwxSvT.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/8.CCkNX20G.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/8.CCkNX20G.js.gz +0 -0
- package/frontend/build/client/_app/immutable/nodes/9.HDerA6JV.js.br +0 -0
- package/frontend/build/client/_app/immutable/nodes/9.HDerA6JV.js.gz +0 -0
- package/frontend/build/server/chunks/0-Di4jNU9J.js +0 -39
- package/frontend/build/server/chunks/0-Di4jNU9J.js.map +0 -21
- package/frontend/build/server/chunks/1-DR5YRUTa.js +0 -31
- package/frontend/build/server/chunks/1-DR5YRUTa.js.map +0 -21
- package/frontend/build/server/chunks/10-Bhe409bL.js +0 -31
- package/frontend/build/server/chunks/11-DqyXW7n1.js +0 -31
- package/frontend/build/server/chunks/12-BCpjMUbs.js +0 -31
- package/frontend/build/server/chunks/2-D-0buH5i.js +0 -31
- package/frontend/build/server/chunks/2-D-0buH5i.js.map +0 -21
- package/frontend/build/server/chunks/3-y2kzPO2X.js +0 -31
- package/frontend/build/server/chunks/4-CFrK8HST.js +0 -31
- package/frontend/build/server/chunks/4-CFrK8HST.js.map +0 -21
- package/frontend/build/server/chunks/5-B0lJu5bT.js +0 -31
- package/frontend/build/server/chunks/5-B0lJu5bT.js.map +0 -21
- package/frontend/build/server/chunks/6-BD4CEJ3Z.js +0 -31
- package/frontend/build/server/chunks/6-BD4CEJ3Z.js.map +0 -21
- package/frontend/build/server/chunks/7-DekQfQHu.js +0 -31
- package/frontend/build/server/chunks/8-BMqmu7WF.js +0 -31
- package/frontend/build/server/chunks/8-BMqmu7WF.js.map +0 -21
- package/frontend/build/server/chunks/9-C5sKo9aY.js +0 -31
- package/frontend/build/server/chunks/Badge-B5V-z6pI.js +0 -35
- package/frontend/build/server/chunks/_layout.svelte-BjPrZpoG.js +0 -46
- package/frontend/build/server/chunks/_page.svelte-B9rjnZWE.js +0 -49
- package/frontend/build/server/chunks/_page.svelte-D1aYn1PL.js +0 -49
- package/frontend/build/server/chunks/_page.svelte-sbqebZYx.js +0 -206
- package/frontend/build/server/chunks/_page.svelte-sbqebZYx.js.map +0 -21
- package/frontend/build/server/chunks/common-Db-bgKYG.js +0 -42
- package/frontend/build/server/chunks/common-Db-bgKYG.js.map +0 -21
- package/frontend/build/server/chunks/constants-cZ2kUwWa.js +0 -41
- package/frontend/build/server/chunks/constants-cZ2kUwWa.js.map +0 -21
- package/frontend/build/server/chunks/error.svelte-BDW3iP1O.js +0 -50
- package/frontend/build/server/chunks/index-server-Dr2Nvcmu.js +0 -36
- package/frontend/build/server/chunks/index-server-Dr2Nvcmu.js.map +0 -21
- package/frontend/build/server/chunks/repository-D9Derhnk.js.map +0 -21
- package/frontend/build/server/chunks/runner-DE5sufZH.js.map +0 -21
- package/frontend/build/server/chunks/stores-DlkXV308.js +0 -49
- package/frontend/build/server/chunks/theme-D_NKm6iI.js +0 -32
- package/frontend/build/server/chunks/theme-D_NKm6iI.js.map +0 -21
- package/resources/gpl-3.0-license.txt +0 -14
|
@@ -1,30 +1,36 @@
|
|
|
1
1
|
<!--
|
|
2
2
|
* This file is part of Plum.
|
|
3
|
-
*
|
|
4
|
-
* Plum is free software: you can redistribute it and/or modify
|
|
5
|
-
* it under the terms of the GNU General Public License as published by
|
|
6
|
-
* the Free Software Foundation, either version 3 of the License, or
|
|
7
|
-
* (at your option) any later version.
|
|
8
|
-
*
|
|
9
|
-
* Plum is distributed in the hope that it will be useful,
|
|
10
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12
|
-
* GNU General Public License for more details.
|
|
13
|
-
*
|
|
14
|
-
* You should have received a copy of the GNU General Public License
|
|
15
|
-
* along with Plum. If not, see https://www.gnu.org/licenses/.
|
|
3
|
+
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
16
4
|
-->
|
|
17
5
|
|
|
18
6
|
<script>
|
|
19
7
|
import { onMount, tick } from 'svelte';
|
|
20
8
|
import { fetchReports, deleteReport, deleteReports, reportUrl } from '$lib/api/reports';
|
|
21
9
|
import { reportsVersion } from '$lib/stores/runner';
|
|
22
|
-
import { REPORTS_PER_PAGE } from '$lib/constants';
|
|
10
|
+
import { REPORTS_PER_PAGE, BROWSERS } from '$lib/constants';
|
|
23
11
|
import { isScheduled, triggerLabel, triggerVariant, stagger } from '$lib/utils/format';
|
|
24
12
|
import Badge from '$lib/components/ui/Badge.svelte';
|
|
25
13
|
import Pagination from '$lib/components/ui/Pagination.svelte';
|
|
26
14
|
import ConfirmModal from '$lib/components/ui/ConfirmModal.svelte';
|
|
27
15
|
import EmptyState from '$lib/components/ui/EmptyState.svelte';
|
|
16
|
+
import {
|
|
17
|
+
LIST_PAGE_TITLE,
|
|
18
|
+
HEADING,
|
|
19
|
+
PASSING_LABEL,
|
|
20
|
+
RECENT_LABEL,
|
|
21
|
+
TREND_HINT,
|
|
22
|
+
NO_REPORTS_MESSAGE,
|
|
23
|
+
SELECT_ALL_TITLE,
|
|
24
|
+
SELECT_ROW_TITLE,
|
|
25
|
+
DELETE_REPORT_TITLE,
|
|
26
|
+
deleteReportsTitle,
|
|
27
|
+
deleteReportsBody,
|
|
28
|
+
runsRecorded,
|
|
29
|
+
passedCountLabel,
|
|
30
|
+
failedCountLabel,
|
|
31
|
+
trendDotTitle,
|
|
32
|
+
deleteSelectedLabel
|
|
33
|
+
} from '$lib/copy/reports';
|
|
28
34
|
|
|
29
35
|
let reports = [];
|
|
30
36
|
let total = 0;
|
|
@@ -122,30 +128,23 @@
|
|
|
122
128
|
}
|
|
123
129
|
</script>
|
|
124
130
|
|
|
125
|
-
<svelte:head><title>
|
|
131
|
+
<svelte:head><title>{LIST_PAGE_TITLE}</title></svelte:head>
|
|
126
132
|
|
|
127
133
|
<ConfirmModal
|
|
128
134
|
bind:open={deleteModal.open}
|
|
129
|
-
title={deleteModal.targets.length
|
|
130
|
-
? 'Delete report?'
|
|
131
|
-
: `Delete ${deleteModal.targets.length} reports?`}
|
|
132
|
-
confirmLabel="Delete"
|
|
135
|
+
title={deleteReportsTitle(deleteModal.targets.length)}
|
|
133
136
|
loading={deleting}
|
|
134
137
|
on:confirm={confirmDelete}
|
|
135
138
|
>
|
|
136
|
-
{
|
|
137
|
-
This will permanently remove the report and its data file.
|
|
138
|
-
{:else}
|
|
139
|
-
This will permanently remove {deleteModal.targets.length} reports and their data files.
|
|
140
|
-
{/if}
|
|
139
|
+
{deleteReportsBody(deleteModal.targets.length)}
|
|
141
140
|
</ConfirmModal>
|
|
142
141
|
|
|
143
142
|
<div class="page-header">
|
|
144
143
|
<div class="header-top">
|
|
145
144
|
<div>
|
|
146
|
-
<h1>
|
|
145
|
+
<h1>{HEADING}</h1>
|
|
147
146
|
<p class="subtitle">
|
|
148
|
-
{total}
|
|
147
|
+
{runsRecorded(total)}
|
|
149
148
|
</p>
|
|
150
149
|
</div>
|
|
151
150
|
|
|
@@ -159,7 +158,7 @@
|
|
|
159
158
|
>
|
|
160
159
|
{passRate}%
|
|
161
160
|
</span>
|
|
162
|
-
<span class="rate-label">
|
|
161
|
+
<span class="rate-label">{PASSING_LABEL}</span>
|
|
163
162
|
</div>
|
|
164
163
|
{/if}
|
|
165
164
|
</div>
|
|
@@ -170,13 +169,13 @@
|
|
|
170
169
|
<div class="pass-bar-fill" style="width: {animateBar ? passRate + '%' : '0'}"></div>
|
|
171
170
|
</div>
|
|
172
171
|
<div class="bar-legend">
|
|
173
|
-
<span class="legend-pass">{passCount}
|
|
174
|
-
<span class="legend-fail">{failCount}
|
|
172
|
+
<span class="legend-pass">{passedCountLabel(passCount)}</span>
|
|
173
|
+
<span class="legend-fail">{failedCountLabel(failCount)}</span>
|
|
175
174
|
</div>
|
|
176
175
|
</div>
|
|
177
176
|
|
|
178
177
|
<div class="trend-row">
|
|
179
|
-
<span class="trend-label">
|
|
178
|
+
<span class="trend-label">{RECENT_LABEL}</span>
|
|
180
179
|
<div class="trend-dots">
|
|
181
180
|
{#each trendDots as r, i}
|
|
182
181
|
<span
|
|
@@ -184,20 +183,20 @@
|
|
|
184
183
|
class:pass={r.status === 'PASS'}
|
|
185
184
|
class:fail={r.status !== 'PASS'}
|
|
186
185
|
style={stagger(i, 35)}
|
|
187
|
-
title=
|
|
186
|
+
title={trendDotTitle(r.status, r.tags, r.date)}
|
|
188
187
|
></span>
|
|
189
188
|
{/each}
|
|
190
189
|
</div>
|
|
191
|
-
<span class="trend-hint"
|
|
190
|
+
<span class="trend-hint">{TREND_HINT}</span>
|
|
192
191
|
</div>
|
|
193
192
|
{/if}
|
|
194
193
|
</div>
|
|
195
194
|
|
|
196
195
|
{#if total === 0}
|
|
197
|
-
<EmptyState message=
|
|
196
|
+
<EmptyState message={NO_REPORTS_MESSAGE} />
|
|
198
197
|
{:else}
|
|
199
198
|
<div class="list-header">
|
|
200
|
-
<label class="select-all-wrap" title=
|
|
199
|
+
<label class="select-all-wrap" title={SELECT_ALL_TITLE}>
|
|
201
200
|
<input
|
|
202
201
|
type="checkbox"
|
|
203
202
|
class="checkbox"
|
|
@@ -208,7 +207,7 @@
|
|
|
208
207
|
</label>
|
|
209
208
|
{#if someSelected}
|
|
210
209
|
<button class="btn-delete-selected" on:click={() => openDeleteModal([...selected])}>
|
|
211
|
-
|
|
210
|
+
{deleteSelectedLabel(selected.size)}
|
|
212
211
|
</button>
|
|
213
212
|
{/if}
|
|
214
213
|
</div>
|
|
@@ -216,7 +215,7 @@
|
|
|
216
215
|
<div class="report-list">
|
|
217
216
|
{#each reports as report, i}
|
|
218
217
|
<div class="report-row" class:is-selected={selected.has(report.id)} style={stagger(i)}>
|
|
219
|
-
<label class="row-check-wrap" title=
|
|
218
|
+
<label class="row-check-wrap" title={SELECT_ROW_TITLE}>
|
|
220
219
|
<input
|
|
221
220
|
type="checkbox"
|
|
222
221
|
class="checkbox"
|
|
@@ -248,7 +247,7 @@
|
|
|
248
247
|
<Badge variant={triggerVariant(report.triggerType)}>
|
|
249
248
|
{triggerLabel(report.triggerType)}
|
|
250
249
|
</Badge>
|
|
251
|
-
{#if report.browser && report.browser !==
|
|
250
|
+
{#if report.browser && report.browser !== BROWSERS[0].id}
|
|
252
251
|
<Badge variant="neutral">{report.browser}</Badge>
|
|
253
252
|
{/if}
|
|
254
253
|
</div>
|
|
@@ -274,7 +273,7 @@
|
|
|
274
273
|
|
|
275
274
|
<button
|
|
276
275
|
class="row-delete-btn"
|
|
277
|
-
title=
|
|
276
|
+
title={DELETE_REPORT_TITLE}
|
|
278
277
|
on:click={(e) => openSingleDelete(report.id, e)}
|
|
279
278
|
>
|
|
280
279
|
<svg
|
|
@@ -1,18 +1,6 @@
|
|
|
1
1
|
<!--
|
|
2
2
|
* This file is part of Plum.
|
|
3
|
-
*
|
|
4
|
-
* Plum is free software: you can redistribute it and/or modify
|
|
5
|
-
* it under the terms of the GNU General Public License as published by
|
|
6
|
-
* the Free Software Foundation, either version 3 of the License, or
|
|
7
|
-
* (at your option) any later version.
|
|
8
|
-
*
|
|
9
|
-
* Plum is distributed in the hope that it will be useful,
|
|
10
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12
|
-
* GNU General Public License for more details.
|
|
13
|
-
*
|
|
14
|
-
* You should have received a copy of the GNU General Public License
|
|
15
|
-
* along with Plum. If not, see https://www.gnu.org/licenses/.
|
|
3
|
+
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
16
4
|
-->
|
|
17
5
|
|
|
18
6
|
<script>
|
|
@@ -31,7 +19,33 @@
|
|
|
31
19
|
featureSuiteTag,
|
|
32
20
|
scenarioHasScreenshots
|
|
33
21
|
} from '$lib/utils/format';
|
|
34
|
-
import { REPLAY_STEP_MS } from '$lib/constants';
|
|
22
|
+
import { REPLAY_STEP_MS, BROWSERS } from '$lib/constants';
|
|
23
|
+
import { pluralize } from '$lib/copy/common';
|
|
24
|
+
import {
|
|
25
|
+
DETAIL_PAGE_TITLE,
|
|
26
|
+
REPORTS_BACK_LABEL,
|
|
27
|
+
LOAD_ERROR,
|
|
28
|
+
PASSED_LABEL,
|
|
29
|
+
FAILED_LABEL,
|
|
30
|
+
STAT_PASSED,
|
|
31
|
+
STAT_FAILED,
|
|
32
|
+
STAT_SKIPPED,
|
|
33
|
+
STAT_DURATION,
|
|
34
|
+
RUN_LOGS_LABEL,
|
|
35
|
+
RETRY_TITLE,
|
|
36
|
+
WATCH_REPLAY_TITLE,
|
|
37
|
+
REPLAY_LABEL,
|
|
38
|
+
SCREENSHOT_TOGGLE_LABEL,
|
|
39
|
+
STEP_SCREENSHOT_ALT,
|
|
40
|
+
NO_SCREENSHOT_MESSAGE,
|
|
41
|
+
runnersBadge,
|
|
42
|
+
casesCountLabel,
|
|
43
|
+
attemptsLabel,
|
|
44
|
+
caseLabel,
|
|
45
|
+
replayScreenshotAlt,
|
|
46
|
+
pauseOrPlayTitle,
|
|
47
|
+
replayCounter
|
|
48
|
+
} from '$lib/copy/reports';
|
|
35
49
|
import Badge from '$lib/components/ui/Badge.svelte';
|
|
36
50
|
import BackLink from '$lib/components/ui/BackLink.svelte';
|
|
37
51
|
import StatusDot from '$lib/components/ui/StatusDot.svelte';
|
|
@@ -126,7 +140,7 @@
|
|
|
126
140
|
try {
|
|
127
141
|
detail = await fetchReportDetail(reportId);
|
|
128
142
|
} catch {
|
|
129
|
-
error =
|
|
143
|
+
error = LOAD_ERROR;
|
|
130
144
|
}
|
|
131
145
|
});
|
|
132
146
|
|
|
@@ -159,9 +173,9 @@
|
|
|
159
173
|
|
|
160
174
|
<svelte:window on:keydown={handleKeydown} />
|
|
161
175
|
|
|
162
|
-
<svelte:head><title>
|
|
176
|
+
<svelte:head><title>{DETAIL_PAGE_TITLE}</title></svelte:head>
|
|
163
177
|
|
|
164
|
-
<BackLink href="/reports" label=
|
|
178
|
+
<BackLink href="/reports" label={REPORTS_BACK_LABEL} />
|
|
165
179
|
|
|
166
180
|
{#if error}
|
|
167
181
|
<div class="error-state">{error}</div>
|
|
@@ -205,7 +219,7 @@
|
|
|
205
219
|
|
|
206
220
|
<div>
|
|
207
221
|
<div class="h1-row">
|
|
208
|
-
<h1>{overallPass ?
|
|
222
|
+
<h1>{overallPass ? PASSED_LABEL : FAILED_LABEL}</h1>
|
|
209
223
|
{#if detail.testRun?.title}
|
|
210
224
|
<span class="run-name-badge">{detail.testRun.title}</span>
|
|
211
225
|
{:else if isScheduled(detail.triggerType)}
|
|
@@ -220,8 +234,8 @@
|
|
|
220
234
|
<span>{new Date(detail.createdAt).toLocaleString()}</span>
|
|
221
235
|
<span class="meta-sep">·</span>
|
|
222
236
|
<span class="browser-pill">
|
|
223
|
-
<BrowserIcon browser={detail.browser ??
|
|
224
|
-
{detail.browser ??
|
|
237
|
+
<BrowserIcon browser={detail.browser ?? BROWSERS[0].id} />
|
|
238
|
+
{detail.browser ?? BROWSERS[0].id}
|
|
225
239
|
</span>
|
|
226
240
|
</div>
|
|
227
241
|
</div>
|
|
@@ -243,7 +257,7 @@
|
|
|
243
257
|
>
|
|
244
258
|
<polyline points="20 6 9 17 4 12" />
|
|
245
259
|
</svg>
|
|
246
|
-
|
|
260
|
+
{STAT_PASSED}
|
|
247
261
|
</span>
|
|
248
262
|
</div>
|
|
249
263
|
{#if failed > 0}
|
|
@@ -262,7 +276,7 @@
|
|
|
262
276
|
>
|
|
263
277
|
<line x1="18" y1="6" x2="6" y2="18" /><line x1="6" y1="6" x2="18" y2="18" />
|
|
264
278
|
</svg>
|
|
265
|
-
|
|
279
|
+
{STAT_FAILED}
|
|
266
280
|
</span>
|
|
267
281
|
</div>
|
|
268
282
|
{/if}
|
|
@@ -281,7 +295,7 @@
|
|
|
281
295
|
>
|
|
282
296
|
<line x1="5" y1="12" x2="19" y2="12" />
|
|
283
297
|
</svg>
|
|
284
|
-
|
|
298
|
+
{STAT_SKIPPED}
|
|
285
299
|
</span>
|
|
286
300
|
</div>
|
|
287
301
|
{/if}
|
|
@@ -300,7 +314,7 @@
|
|
|
300
314
|
>
|
|
301
315
|
<circle cx="12" cy="12" r="10" /><polyline points="12 6 12 12 16 14" />
|
|
302
316
|
</svg>
|
|
303
|
-
|
|
317
|
+
{STAT_DURATION}
|
|
304
318
|
</span>
|
|
305
319
|
</div>
|
|
306
320
|
<div class="stat">
|
|
@@ -318,7 +332,7 @@
|
|
|
318
332
|
<rect x="2" y="3" width="20" height="14" rx="2" />
|
|
319
333
|
<path d="M8 21h8M12 17v4" />
|
|
320
334
|
</svg>
|
|
321
|
-
|
|
335
|
+
{pluralize(detail.runners, 'runner')}
|
|
322
336
|
</span>
|
|
323
337
|
</div>
|
|
324
338
|
</div>
|
|
@@ -340,9 +354,9 @@
|
|
|
340
354
|
>
|
|
341
355
|
<polyline points="4 17 10 11 4 5" /><line x1="12" y1="19" x2="20" y2="19" />
|
|
342
356
|
</svg>
|
|
343
|
-
|
|
357
|
+
{RUN_LOGS_LABEL}
|
|
344
358
|
{#if logSections.length > 1}
|
|
345
|
-
<span class="log-runner-count">{logSections.length}
|
|
359
|
+
<span class="log-runner-count">{runnersBadge(logSections.length)}</span>
|
|
346
360
|
{/if}
|
|
347
361
|
</summary>
|
|
348
362
|
|
|
@@ -428,14 +442,11 @@
|
|
|
428
442
|
<span class="scenario-name">
|
|
429
443
|
{group.name}
|
|
430
444
|
{#if group.scenarios.length > 1}
|
|
431
|
-
<span class="scenario-count">{group.scenarios.length}
|
|
445
|
+
<span class="scenario-count">{casesCountLabel(group.scenarios.length)}</span>
|
|
432
446
|
{/if}
|
|
433
447
|
{#if group.scenarios[0]?.attempts > 1}
|
|
434
|
-
<span
|
|
435
|
-
|
|
436
|
-
title="Failed and was automatically retried before the final result"
|
|
437
|
-
>
|
|
438
|
-
{group.scenarios[0].attempts} attempts
|
|
448
|
+
<span class="scenario-count" title={RETRY_TITLE}>
|
|
449
|
+
{attemptsLabel(group.scenarios[0].attempts)}
|
|
439
450
|
</span>
|
|
440
451
|
{/if}
|
|
441
452
|
</span>
|
|
@@ -466,13 +477,13 @@
|
|
|
466
477
|
{#if groupHasReplay && group.scenarios.length === 1}
|
|
467
478
|
<button
|
|
468
479
|
class="replay-btn"
|
|
469
|
-
title=
|
|
480
|
+
title={WATCH_REPLAY_TITLE}
|
|
470
481
|
on:click={() => openReplay(group.scenarios[0])}
|
|
471
482
|
>
|
|
472
483
|
<svg width="11" height="11" viewBox="0 0 24 24" fill="currentColor" stroke="none">
|
|
473
484
|
<polygon points="5,3 19,12 5,21" />
|
|
474
485
|
</svg>
|
|
475
|
-
|
|
486
|
+
{REPLAY_LABEL}
|
|
476
487
|
</button>
|
|
477
488
|
{/if}
|
|
478
489
|
</div>
|
|
@@ -483,7 +494,7 @@
|
|
|
483
494
|
{#if group.scenarios.length > 1}
|
|
484
495
|
<div class="example-header">
|
|
485
496
|
<StatusDot status={scenario.status} />
|
|
486
|
-
<span>
|
|
497
|
+
<span>{caseLabel(exampleIndex + 1)}</span>
|
|
487
498
|
<span class="scenario-duration">{fmtDuration(scenario.duration)}</span>
|
|
488
499
|
{#if scenarioHasScreenshots(scenario)}
|
|
489
500
|
<button
|
|
@@ -499,7 +510,7 @@
|
|
|
499
510
|
>
|
|
500
511
|
<polygon points="5,3 19,12 5,21" />
|
|
501
512
|
</svg>
|
|
502
|
-
|
|
513
|
+
{REPLAY_LABEL}
|
|
503
514
|
</button>
|
|
504
515
|
{/if}
|
|
505
516
|
</div>
|
|
@@ -524,11 +535,11 @@
|
|
|
524
535
|
|
|
525
536
|
{#if step.screenshot}
|
|
526
537
|
<details class="screenshot-wrap">
|
|
527
|
-
<summary class="screenshot-toggle">
|
|
538
|
+
<summary class="screenshot-toggle">{SCREENSHOT_TOGGLE_LABEL}</summary>
|
|
528
539
|
<img
|
|
529
540
|
class="screenshot"
|
|
530
541
|
src={screenshotUrl(step.screenshot)}
|
|
531
|
-
alt=
|
|
542
|
+
alt={STEP_SCREENSHOT_ALT}
|
|
532
543
|
/>
|
|
533
544
|
</details>
|
|
534
545
|
{/if}
|
|
@@ -571,10 +582,10 @@
|
|
|
571
582
|
<img
|
|
572
583
|
class="replay-screenshot"
|
|
573
584
|
src={screenshotUrl(currentReplayStep.screenshot)}
|
|
574
|
-
alt=
|
|
585
|
+
alt={replayScreenshotAlt(replayIdx + 1)}
|
|
575
586
|
/>
|
|
576
587
|
{:else}
|
|
577
|
-
<div class="replay-no-screenshot">
|
|
588
|
+
<div class="replay-no-screenshot">{NO_SCREENSHOT_MESSAGE}</div>
|
|
578
589
|
{/if}
|
|
579
590
|
</div>
|
|
580
591
|
|
|
@@ -619,7 +630,7 @@
|
|
|
619
630
|
<button
|
|
620
631
|
class="replay-play-btn"
|
|
621
632
|
on:click={togglePlayback}
|
|
622
|
-
title={replayPlaying
|
|
633
|
+
title={pauseOrPlayTitle(replayPlaying)}
|
|
623
634
|
>
|
|
624
635
|
{#if replayPlaying}
|
|
625
636
|
<svg width="14" height="14" viewBox="0 0 24 24" fill="currentColor" stroke="none">
|
|
@@ -656,7 +667,7 @@
|
|
|
656
667
|
</svg>
|
|
657
668
|
</button>
|
|
658
669
|
|
|
659
|
-
<span class="replay-counter">{replayIdx + 1
|
|
670
|
+
<span class="replay-counter">{replayCounter(replayIdx + 1, replaySteps.length)}</span>
|
|
660
671
|
</div>
|
|
661
672
|
</div>
|
|
662
673
|
</div>
|
|
@@ -1,18 +1,6 @@
|
|
|
1
1
|
<!--
|
|
2
2
|
* This file is part of Plum.
|
|
3
|
-
*
|
|
4
|
-
* Plum is free software: you can redistribute it and/or modify
|
|
5
|
-
* it under the terms of the GNU General Public License as published by
|
|
6
|
-
* the Free Software Foundation, either version 3 of the License, or
|
|
7
|
-
* (at your option) any later version.
|
|
8
|
-
*
|
|
9
|
-
* Plum is distributed in the hope that it will be useful,
|
|
10
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
11
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
12
|
-
* GNU General Public License for more details.
|
|
13
|
-
*
|
|
14
|
-
* You should have received a copy of the GNU General Public License
|
|
15
|
-
* along with Plum. If not, see https://www.gnu.org/licenses/.
|
|
3
|
+
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
16
4
|
-->
|
|
17
5
|
|
|
18
6
|
<script>
|
|
@@ -22,7 +10,35 @@
|
|
|
22
10
|
import { fly, fade } from 'svelte/transition';
|
|
23
11
|
import { runnerState, cancelRun, backgroundRuns } from '$lib/stores/runner';
|
|
24
12
|
import { reportUrl } from '$lib/api/reports';
|
|
25
|
-
import { REDIRECT_DELAY_MS
|
|
13
|
+
import { REDIRECT_DELAY_MS } from '$lib/constants';
|
|
14
|
+
import { ALL_TESTS_LABEL, pluralize } from '$lib/copy/common';
|
|
15
|
+
import {
|
|
16
|
+
REPORTS_BACK_LABEL,
|
|
17
|
+
PASSED_LABEL,
|
|
18
|
+
FAILED_LABEL,
|
|
19
|
+
LIVE_PAGE_TITLE,
|
|
20
|
+
NO_TESTS_RUNNING_HEADING,
|
|
21
|
+
NO_TESTS_RUNNING_BODY,
|
|
22
|
+
VIEW_PAST_REPORTS_LINK,
|
|
23
|
+
SELECT_RUN_HINT,
|
|
24
|
+
LIVE_BADGE_LABEL,
|
|
25
|
+
CANCEL_RUN_LABEL,
|
|
26
|
+
ALL_TESTS_PASSED,
|
|
27
|
+
SOME_TESTS_FAILED,
|
|
28
|
+
VIEW_REPORT_NOW_LABEL,
|
|
29
|
+
LIVE_STEP_LABEL,
|
|
30
|
+
LIVE_BROWSER_VIEW_ALT,
|
|
31
|
+
AWAITING_STREAM_LABEL,
|
|
32
|
+
NO_STREAM_LABEL,
|
|
33
|
+
RUNNER_LABEL,
|
|
34
|
+
RUNNING_LABEL,
|
|
35
|
+
FINISHED_LABEL,
|
|
36
|
+
WAITING_FOR_OUTPUT,
|
|
37
|
+
runsInProgressHeading,
|
|
38
|
+
workersCountLabel,
|
|
39
|
+
redirectingIn,
|
|
40
|
+
runnersBadge
|
|
41
|
+
} from '$lib/copy/reports';
|
|
26
42
|
import { triggerLabel } from '$lib/utils/format';
|
|
27
43
|
import BackLink from '$lib/components/ui/BackLink.svelte';
|
|
28
44
|
import Badge from '$lib/components/ui/Badge.svelte';
|
|
@@ -92,9 +108,9 @@
|
|
|
92
108
|
}
|
|
93
109
|
</script>
|
|
94
110
|
|
|
95
|
-
<svelte:head><title>
|
|
111
|
+
<svelte:head><title>{LIVE_PAGE_TITLE}</title></svelte:head>
|
|
96
112
|
|
|
97
|
-
<BackLink href="/reports" label=
|
|
113
|
+
<BackLink href="/reports" label={REPORTS_BACK_LABEL} />
|
|
98
114
|
|
|
99
115
|
{#if showIdle}
|
|
100
116
|
<div class="idle-state">
|
|
@@ -113,14 +129,14 @@
|
|
|
113
129
|
<polyline points="12 6 12 12 16 14" />
|
|
114
130
|
</svg>
|
|
115
131
|
</div>
|
|
116
|
-
<h2>
|
|
117
|
-
<p>
|
|
118
|
-
<a href="/reports" class="idle-link">
|
|
132
|
+
<h2>{NO_TESTS_RUNNING_HEADING}</h2>
|
|
133
|
+
<p>{NO_TESTS_RUNNING_BODY}</p>
|
|
134
|
+
<a href="/reports" class="idle-link">{VIEW_PAST_REPORTS_LINK}</a>
|
|
119
135
|
</div>
|
|
120
136
|
{:else if showPicker}
|
|
121
137
|
<div class="cron-running-state">
|
|
122
138
|
<div class="cron-running-icon"><span class="cron-pulse-dot"></span></div>
|
|
123
|
-
<h2>{runningBgList.length
|
|
139
|
+
<h2>{runsInProgressHeading(runningBgList.length)}</h2>
|
|
124
140
|
<div class="cron-task-list">
|
|
125
141
|
{#each runningBgList as [runId, run] (runId)}
|
|
126
142
|
<a href="/reports/live?run={runId}" class="cron-task-chip"
|
|
@@ -128,7 +144,7 @@
|
|
|
128
144
|
>
|
|
129
145
|
{/each}
|
|
130
146
|
</div>
|
|
131
|
-
<p>
|
|
147
|
+
<p>{SELECT_RUN_HINT}</p>
|
|
132
148
|
</div>
|
|
133
149
|
{:else}
|
|
134
150
|
<!-- ── Run header ── -->
|
|
@@ -139,11 +155,11 @@
|
|
|
139
155
|
>
|
|
140
156
|
<div class="header-left">
|
|
141
157
|
{#if state.running}
|
|
142
|
-
<span class="live-badge"><span class="live-dot"></span>
|
|
158
|
+
<span class="live-badge"><span class="live-dot"></span>{LIVE_BADGE_LABEL}</span>
|
|
143
159
|
{:else if state.status === 'pass'}
|
|
144
|
-
<Badge variant="pass">
|
|
160
|
+
<Badge variant="pass">{PASSED_LABEL}</Badge>
|
|
145
161
|
{:else}
|
|
146
|
-
<Badge variant="fail">
|
|
162
|
+
<Badge variant="fail">{FAILED_LABEL}</Badge>
|
|
147
163
|
{/if}
|
|
148
164
|
|
|
149
165
|
{#if state.currentRun}
|
|
@@ -154,14 +170,12 @@
|
|
|
154
170
|
{/if}
|
|
155
171
|
<span class="run-tag-label">{state.currentRun.tag || ALL_TESTS_LABEL}</span>
|
|
156
172
|
<span class="run-sep">·</span>
|
|
157
|
-
<span class="run-detail"
|
|
158
|
-
>{state.currentRun.workers} worker{state.currentRun.workers !== 1 ? 's' : ''}</span
|
|
159
|
-
>
|
|
173
|
+
<span class="run-detail">{workersCountLabel(state.currentRun.workers)}</span>
|
|
160
174
|
<span class="run-sep">·</span>
|
|
161
175
|
<span class="run-detail">{state.currentRun.browser}</span>
|
|
162
176
|
{#if state.lanes.length > 1}
|
|
163
177
|
<span class="run-sep">·</span>
|
|
164
|
-
<span class="run-detail">{state.lanes.length}
|
|
178
|
+
<span class="run-detail">{runnersBadge(state.lanes.length)}</span>
|
|
165
179
|
{/if}
|
|
166
180
|
</div>
|
|
167
181
|
{/if}
|
|
@@ -183,7 +197,7 @@
|
|
|
183
197
|
<line x1="9" y1="9" x2="15" y2="15" />
|
|
184
198
|
<line x1="15" y1="9" x2="9" y2="15" />
|
|
185
199
|
</svg>
|
|
186
|
-
|
|
200
|
+
{CANCEL_RUN_LABEL}
|
|
187
201
|
</button>
|
|
188
202
|
{/if}
|
|
189
203
|
</div>
|
|
@@ -208,7 +222,7 @@
|
|
|
208
222
|
stroke-linecap="round"
|
|
209
223
|
stroke-linejoin="round"><polyline points="20 6 9 17 4 12" /></svg
|
|
210
224
|
>
|
|
211
|
-
|
|
225
|
+
{ALL_TESTS_PASSED}
|
|
212
226
|
{:else}
|
|
213
227
|
<svg
|
|
214
228
|
width="16"
|
|
@@ -221,13 +235,13 @@
|
|
|
221
235
|
stroke-linejoin="round"
|
|
222
236
|
><line x1="18" y1="6" x2="6" y2="18" /><line x1="6" y1="6" x2="18" y2="18" /></svg
|
|
223
237
|
>
|
|
224
|
-
|
|
238
|
+
{SOME_TESTS_FAILED}
|
|
225
239
|
{/if}
|
|
226
240
|
</div>
|
|
227
241
|
<div class="completion-right">
|
|
228
|
-
<span class="redirect-hint">
|
|
242
|
+
<span class="redirect-hint">{redirectingIn(redirectCountdown)}</span>
|
|
229
243
|
<button class="view-now-btn" on:click={goNow}>
|
|
230
|
-
|
|
244
|
+
{VIEW_REPORT_NOW_LABEL}
|
|
231
245
|
<svg
|
|
232
246
|
width="12"
|
|
233
247
|
height="12"
|
|
@@ -278,12 +292,12 @@
|
|
|
278
292
|
<img
|
|
279
293
|
src="data:image/jpeg;base64,{activeLane.latestScreenshot.data}"
|
|
280
294
|
class="live-shot"
|
|
281
|
-
alt=
|
|
295
|
+
alt={LIVE_BROWSER_VIEW_ALT}
|
|
282
296
|
in:fade={{ duration: 120 }}
|
|
283
297
|
/>
|
|
284
298
|
{/key}
|
|
285
299
|
<div class="step-overlay">
|
|
286
|
-
<span class="step-keyword">
|
|
300
|
+
<span class="step-keyword">{LIVE_STEP_LABEL}</span>
|
|
287
301
|
<span class="step-name">{activeLane.latestScreenshot.stepName}</span>
|
|
288
302
|
</div>
|
|
289
303
|
{:else}
|
|
@@ -302,7 +316,8 @@
|
|
|
302
316
|
<rect x="2" y="5" width="20" height="14" rx="2" />
|
|
303
317
|
<circle cx="12" cy="12" r="3" />
|
|
304
318
|
</svg>
|
|
305
|
-
<span>{activeLane?.status === 'running' ?
|
|
319
|
+
<span>{activeLane?.status === 'running' ? AWAITING_STREAM_LABEL : NO_STREAM_LABEL}</span
|
|
320
|
+
>
|
|
306
321
|
</div>
|
|
307
322
|
{/if}
|
|
308
323
|
{:else if state.latestScreenshot}
|
|
@@ -310,12 +325,12 @@
|
|
|
310
325
|
<img
|
|
311
326
|
src="data:image/jpeg;base64,{state.latestScreenshot.data}"
|
|
312
327
|
class="live-shot"
|
|
313
|
-
alt=
|
|
328
|
+
alt={LIVE_BROWSER_VIEW_ALT}
|
|
314
329
|
in:fade={{ duration: 120 }}
|
|
315
330
|
/>
|
|
316
331
|
{/key}
|
|
317
332
|
<div class="step-overlay">
|
|
318
|
-
<span class="step-keyword">
|
|
333
|
+
<span class="step-keyword">{LIVE_STEP_LABEL}</span>
|
|
319
334
|
<span class="step-name">{state.latestScreenshot.stepName}</span>
|
|
320
335
|
</div>
|
|
321
336
|
{:else}
|
|
@@ -334,7 +349,7 @@
|
|
|
334
349
|
<rect x="2" y="5" width="20" height="14" rx="2" />
|
|
335
350
|
<circle cx="12" cy="12" r="3" />
|
|
336
351
|
</svg>
|
|
337
|
-
<span>{state.running ?
|
|
352
|
+
<span>{state.running ? AWAITING_STREAM_LABEL : NO_STREAM_LABEL}</span>
|
|
338
353
|
</div>
|
|
339
354
|
{/if}
|
|
340
355
|
</div>
|
|
@@ -347,15 +362,15 @@
|
|
|
347
362
|
<span class="dot green"></span>
|
|
348
363
|
<span class="terminal-label">
|
|
349
364
|
{#if isMulti}
|
|
350
|
-
{activeLane?.name ??
|
|
365
|
+
{activeLane?.name ?? RUNNER_LABEL}
|
|
351
366
|
{:else}
|
|
352
|
-
{state.running ?
|
|
367
|
+
{state.running ? RUNNING_LABEL : FINISHED_LABEL}
|
|
353
368
|
{/if}
|
|
354
369
|
</span>
|
|
355
370
|
</div>
|
|
356
371
|
{#if isMulti}
|
|
357
372
|
<pre class="terminal" bind:this={laneTerminalEl}>{activeLane?.logs ||
|
|
358
|
-
|
|
373
|
+
WAITING_FOR_OUTPUT}</pre>
|
|
359
374
|
{:else}
|
|
360
375
|
<pre class="terminal" bind:this={terminalEl}>{state.output}</pre>
|
|
361
376
|
{/if}
|