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
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This file is part of Plum.
|
|
3
|
+
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import{p as t}from"./CUC98kMZ.js";const e="Test Repository",E="Name",o="Description",_="Priority",n="Title",T="Name is required.",c="Title is required.",L="Test Repository — Plum",A="Test Repository",S="Manage test suites, cases, and track manual test runs.",i="+ New Suite",D="+ New Run",d="Suites",I="Test Runs",R="Search by ID or name…",N="No results",u="Cases",O="Suites",C="automated",r="Delete suite",l="Delete run",U="Duplicate run",p="No test suites yet",B="Create your first suite to start organising test cases.",P="No test runs yet",b="Create a test run to start executing and tracking manual tests.",F="New Test Suite",M="New Test Run",m="Login flows",h="What this suite covers…",$="Sprint 12 regression",g="Duplicate Run",y="Duplicate",H="? A copy will be added at the top of the list.",G="Failed to load data",f="Failed to delete suite.",k="Failed to duplicate run.",Y="Failed to delete run.",v=s=>`Nothing matches "${s}".`,w=s=>`by ${s}`,x=s=>`${s} ${t(s,"case")}`,W=s=>s?"Creating…":"Create Suite",K=s=>s?"Creating…":"Create Run",X=s=>`Delete ${s==="suite"?"Suite":"Run"}`,V=s=>`Suite "${s}" created.`,q=s=>`Suite "${s}" deleted.`,z=s=>`Duplicated as "${s}".`,Q=s=>`Run "${s}" deleted.`,j="Delete Test Case",J="New Test Case",Z="User can log in with valid credentials",ss="What this case verifies…",ts="Create Case",as="Edit Suite",es="Edit suite",Es="Edit case",os="Test Cases",_s="+ Add Case",ns="Filter by ID or name…",Ts="No cases yet",cs="Add your first test case to this suite.",Ls="No cases match",As="Date",Ss="Step",is="Action",Ds="Test Data",ds="Expected Output",Is="Describe the action…",Rs="Optional",Ns="What should happen…",us='No steps. Click "+ Add step" to begin.',Os="+ Add step",Cs="Edit Steps",rs='No steps defined. Click "Edit Steps" to add them.',ls="Steps",Us="History",ps="No history yet. Results appear after test runs or automated builds.",Bs="Automated run ↗",Ps="Report not found",bs="Run not found",Fs="Failed to load suite",Ms="Failed to load case",ms="Failed to delete case.",hs="Test case updated.",$s="Steps saved.",gs="Suite updated.",ys=s=>`${s?`${s.displayId} — ${s.name}`:"Suite"} — Plum`,Hs=s=>`Created by ${s}`,Gs=s=>`${s} created.`,fs=s=>`${s} deleted.`,ks=s=>`${s} ${t(s,"step")}`,Ys=s=>s?"Saving…":"Save Steps",vs=s=>`${s} ↗`,ws="Edit Run",xs="Edit run",Ws="Reopen",Ks="Start Execution",Xs="Stop Execution",Vs="← Edit Run",qs="Mark Complete",zs="Build",Qs="Execute",js="In this run",Js="locked",Zs="No cases in this run.",st="Unassigned",tt="Suite browser",at="Search cases…",et="No matching cases",Et="No cases in this suite",ot="All cases added",_t="No suites available.",nt="This run is not in progress — start execution to record results.",Tt="Toggle steps",ct="Assign to me",Lt="In Progress",At="Pass",St="Fail",it="Blocked",Dt="Skip",dt="Reset to pending",It="↩ Reset",Rt="Failed to add case.",Nt="Run updated.",ut="Run saved.",Ot="Run marked as complete.",Ct="Run reopened.",rt=s=>`${(s==null?void 0:s.title)??"Test Run"} — Plum`,lt=s=>`${s} passed`,Ut=s=>`${s} failed`,pt=s=>`${s} remaining`,Bt=s=>`Data: ${s}`,Pt=s=>`Expected: ${s}`;export{fs as $,B as A,p as B,r as C,y as D,x as E,G as F,w as G,A as H,b as I,P as J,U as K,l as L,v as M,F as N,u as O,L as P,C as Q,I as R,d as S,n as T,O as U,ys as V,j as W,J as X,Z as Y,ss as Z,as as _,S as a,dt as a$,Fs as a0,ms as a1,ts as a2,Gs as a3,gs as a4,e as a5,es as a6,os as a7,_s as a8,Hs as a9,Ps as aA,vs as aB,bs as aC,rt as aD,ws as aE,Nt as aF,xs as aG,zs as aH,Qs as aI,Ws as aJ,js as aK,Tt as aL,Ct as aM,Js as aN,Zs as aO,st as aP,tt as aQ,at as aR,nt as aS,lt as aT,Ut as aU,pt as aV,Lt as aW,At as aX,St as aY,it as aZ,Dt as a_,ns as aa,As as ab,cs as ac,Ts as ad,Ls as ae,ks as af,Ms as ag,ls as ah,Us as ai,Es as aj,hs as ak,Cs as al,Ys as am,Os as an,ps as ao,Bs as ap,$s as aq,us as ar,Ss as as,Is as at,Ds as au,Rs as av,ds as aw,Ns as ax,is as ay,rs as az,g as b,It as b0,Bt as b1,Pt as b2,ct as b3,ut as b4,Rt as b5,Ks as b6,Xs as b7,Vs as b8,qs as b9,et as ba,Et as bb,ot as bc,_t as bd,Ot as be,H as c,E as d,m as e,o as f,h as g,_ as h,W as i,M as j,$ as k,K as l,R as m,f as n,Y as o,X as p,z as q,Q as r,q as s,k as t,T as u,V as v,c as w,i as x,D as y,N as z};
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This file is part of Plum.
|
|
3
|
+
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import{c as M,a as r,s as d,t as n,b as j}from"./CMBQQ9RZ.js";import"./CKDtmZUQ.js";import{f as G,d as v,k as o,j as P,t as m}from"./BAACMRH5.js";import{i as b}from"./CgnwuKKO.js";import{s as g,b as Y}from"./TOCyHP97.js";import{p as l}from"./C8OURRSs.js";import{o as q}from"./CUC98kMZ.js";var w=n('<p class="empty-desc svelte-iaevnx"> </p>'),B=n('<div><p class="empty-title svelte-iaevnx"> </p> <!></div>'),C=n("<p><!></p>");function N(u,a){let c=l(a,"title",8,""),x=l(a,"description",8,""),S=l(a,"message",8,q),E=l(a,"size",8,"md");var y=M(),T=G(y);{var h=e=>{var t=B(),s=v(t),p=v(s,!0);o(s);var i=P(s,2);{var z=f=>{var _=w(),A=v(_,!0);o(_),m(()=>d(A,x())),r(f,_)};b(i,f=>{x()&&f(z)})}o(t),m(()=>{g(t,`empty ${E()??""} svelte-iaevnx`),d(p,c())}),r(e,t)},k=e=>{var t=C(),s=v(t);Y(s,a,"default",{},p=>{var i=j();m(()=>d(i,S())),r(p,i)}),o(t),m(()=>g(t,`empty ${E()??""} svelte-iaevnx`)),r(e,t)};b(T,e=>{c()?e(h):e(k,!1)})}r(u,y)}export{N as E};
|
|
Binary file
|
|
Binary file
|
|
@@ -1,23 +1,6 @@
|
|
|
1
|
-
/*
|
|
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/.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
1
|
/*
|
|
19
2
|
* This file is part of Plum.
|
|
20
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
21
4
|
*/
|
|
22
5
|
|
|
23
|
-
import{A as n,a as c}from"./
|
|
6
|
+
import{A as n,a as c}from"./CUC98kMZ.js";import{a as d}from"./C1Vid6wz.js";function f(){return d.getToken()}function o(){return{"Content-Type":"application/json",Authorization:`Bearer ${f()}`}}async function y({page:t=1,limit:e=c,sortBy:s,sortOrder:r}={}){const a=new URLSearchParams({page:t,limit:e});s&&a.set("sortBy",s),r&&a.set("sortOrder",r);const i=await fetch(`${n}/test-suites?${a}`,{headers:o()});if(!i.ok)throw new Error("Failed to fetch suites");return i.json()}async function $(){const t=await fetch(`${n}/test-suites?withCases=true`,{headers:o()});if(!t.ok)throw new Error("Failed to fetch suites");return(await t.json()).suites}async function l(t){const e=encodeURIComponent(t),[s,r]=await Promise.all([fetch(`${n}/test-suites?q=${e}`,{headers:o()}),fetch(`${n}/test-runs?q=${e}&limit=50`,{headers:o()})]),{suites:a,cases:i}=await s.json(),{runs:u}=await r.json();return{suites:a,cases:i,runs:u}}async function E(t){const e=await fetch(`${n}/test-suites/${t}`,{headers:o()});if(!e.ok)throw new Error("Suite not found");return(await e.json()).suite}async function m({name:t,description:e,priority:s}){const r=await fetch(`${n}/test-suites`,{method:"POST",headers:o(),body:JSON.stringify({name:t,description:e,priority:s})}),a=await r.json();if(!r.ok)throw new Error(a.error??"Failed to create suite");return a.suite}async function S(t,{name:e,description:s,priority:r}){const a=await fetch(`${n}/test-suites/${t}`,{method:"PUT",headers:o(),body:JSON.stringify({name:e,description:s,priority:r})}),i=await a.json();if(!a.ok)throw new Error(i.error??"Failed to update suite");return i.suite}async function p(t){if(!(await fetch(`${n}/test-suites/${t}`,{method:"DELETE",headers:o()})).ok)throw new Error("Failed to delete suite")}async function j(t){const e=await fetch(`${n}/test-cases/${t}`,{headers:o()});if(!e.ok)throw new Error("Test case not found");return(await e.json()).testCase}async function k({suiteId:t,title:e,description:s,priority:r}){const a=await fetch(`${n}/test-cases`,{method:"POST",headers:o(),body:JSON.stringify({suiteId:t,title:e,description:s,priority:r})}),i=await a.json();if(!a.ok)throw new Error(i.error??"Failed to create test case");return i.testCase}async function T(t,{title:e,description:s,priority:r}){const a=await fetch(`${n}/test-cases/${t}`,{method:"PUT",headers:o(),body:JSON.stringify({title:e,description:s,priority:r})}),i=await a.json();if(!a.ok)throw new Error(i.error??"Failed to update test case");return i.testCase}async function g(t,e){const s=await fetch(`${n}/test-cases/${t}/steps`,{method:"PUT",headers:o(),body:JSON.stringify({steps:e})}),r=await s.json();if(!s.ok)throw new Error(r.error??"Failed to save steps");return r.steps}async function P(t){if(!(await fetch(`${n}/test-cases/${t}`,{method:"DELETE",headers:o()})).ok)throw new Error("Failed to delete test case")}async function O({page:t=1,limit:e=c,sortBy:s,sortOrder:r}={}){const a=new URLSearchParams({page:t,limit:e});s&&a.set("sortBy",s),r&&a.set("sortOrder",r);const i=await fetch(`${n}/test-runs?${a}`,{headers:o()});if(!i.ok)throw new Error("Failed to fetch test runs");return i.json()}async function F(t){const e=await fetch(`${n}/test-runs/${t}`,{headers:o()});if(!e.ok)throw new Error("Test run not found");return(await e.json()).run}async function b({title:t,caseIds:e}){const s=await fetch(`${n}/test-runs`,{method:"POST",headers:o(),body:JSON.stringify({title:t,caseIds:e})}),r=await s.json();if(!s.ok)throw new Error(r.error??"Failed to create test run");return r.run}async function R(t,{title:e,status:s,caseIds:r}){const a=await fetch(`${n}/test-runs/${t}`,{method:"PUT",headers:o(),body:JSON.stringify({title:e,status:s,caseIds:r})}),i=await a.json();if(!a.ok)throw new Error(i.error??"Failed to update test run");return i.run}async function C(t){const e=await fetch(`${n}/test-runs/${t}/duplicate`,{method:"POST",headers:o()}),s=await e.json();if(!e.ok)throw new Error(s.error??"Failed to duplicate run");return s.run}async function J(t){if(!(await fetch(`${n}/test-runs/${t}`,{method:"DELETE",headers:o()})).ok)throw new Error("Failed to delete test run")}async function N(t,{status:e,notes:s}){const r=await fetch(`${n}/test-runs/entries/${t}/result`,{method:"POST",headers:o(),body:JSON.stringify({status:e,notes:s})}),a=await r.json();if(!r.ok)throw new Error(a.error??"Failed to record result");return a.entry}async function x(t,e){const s=await fetch(`${n}/test-runs/entries/${t}/assign`,{method:"PUT",headers:o(),body:JSON.stringify({userId:e??null})}),r=await s.json();if(!s.ok)throw new Error(r.error??"Failed to assign entry");return r.entry}async function U(){const t=await fetch(`${n}/users/members`,{headers:o()});if(!t.ok)throw new Error("Failed to fetch members");return(await t.json()).users}async function A(){const t=await fetch(`${n}/settings/test-prefixes`,{headers:o()});if(!t.ok)throw new Error("Failed to fetch prefixes");return t.json()}async function L({testCasePrefix:t,testSuitePrefix:e}){return(await fetch(`${n}/settings/test-prefixes`,{method:"POST",headers:o(),body:JSON.stringify({testCasePrefix:t,testSuitePrefix:e})})).json()}async function v({testCasePrefix:t,testSuitePrefix:e}){return(await fetch(`${n}/settings/test-prefixes/migrate`,{method:"POST",headers:o(),body:JSON.stringify({testCasePrefix:t,testSuitePrefix:e})})).json()}export{O as a,J as b,C as c,p as d,m as e,y as f,b as g,E as h,P as i,k as j,j as k,T as l,g as m,A as n,L as o,v as p,F as q,$ as r,l as s,U as t,S as u,R as v,x as w,N as x};
|
|
Binary file
|
|
Binary file
|
|
@@ -1,20 +1,3 @@
|
|
|
1
|
-
/*
|
|
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/.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
1
|
/*
|
|
19
2
|
* This file is part of Plum.
|
|
20
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
Binary file
|
|
Binary file
|
|
@@ -1,23 +1,6 @@
|
|
|
1
|
-
/*
|
|
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/.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
1
|
/*
|
|
19
2
|
* This file is part of Plum.
|
|
20
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
21
4
|
*/
|
|
22
5
|
|
|
23
|
-
import{A as r}from"./
|
|
6
|
+
import{A as r}from"./CUC98kMZ.js";const i=8e3;async function s(o,e={}){const a=new AbortController,t=setTimeout(()=>a.abort(),i);try{return await fetch(o,{...e,signal:a.signal})}finally{clearTimeout(t)}}async function u(){const o=await s(`${r}/auth/needs-setup`);return o.ok?(await o.json()).needsSetup:!1}async function d({name:o,email:e,password:a}){const t=await s(`${r}/auth/setup`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({name:o,email:e,password:a})}),n=await t.json();if(!t.ok)throw new Error(n.error??"Setup failed");return n}async function p({email:o,password:e}){const a=await s(`${r}/auth/login`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:o,password:e})}),t=await a.json();if(!a.ok)throw new Error(t.error??"Login failed");return t}async function h({token:o,name:e,email:a}){const t=await s(`${r}/auth/update-profile`,{method:"PUT",headers:{"Content-Type":"application/json",Authorization:`Bearer ${o}`},body:JSON.stringify({name:e,email:a})}),n=await t.json();if(!t.ok)throw new Error(n.error??"Failed to update profile");return n}async function f({token:o,currentPassword:e,newPassword:a}){const t=await s(`${r}/auth/change-password`,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${o}`},body:JSON.stringify({currentPassword:e,newPassword:a})}),n=await t.json();if(!t.ok)throw new Error(n.error??"Failed to change password");return n}export{f as a,u as c,p as l,d as s,h as u};
|
|
Binary file
|
|
Binary file
|
|
@@ -1,20 +1,3 @@
|
|
|
1
|
-
/*
|
|
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/.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
1
|
/*
|
|
19
2
|
* This file is part of Plum.
|
|
20
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
Binary file
|
|
Binary file
|
|
@@ -1,20 +1,3 @@
|
|
|
1
|
-
/*
|
|
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/.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
1
|
/*
|
|
19
2
|
* This file is part of Plum.
|
|
20
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
Binary file
|
|
Binary file
|
|
@@ -1,23 +1,6 @@
|
|
|
1
|
-
/*
|
|
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/.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
1
|
/*
|
|
19
2
|
* This file is part of Plum.
|
|
20
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
21
4
|
*/
|
|
22
5
|
|
|
23
|
-
import{a as f,t as c,s as v}from"./CMBQQ9RZ.js";import"./CKDtmZUQ.js";import{t as m,d as a,j as d,k as o}from"./BAACMRH5.js";import{s as k}from"./
|
|
6
|
+
import{a as f,t as c,s as v}from"./CMBQQ9RZ.js";import"./CKDtmZUQ.js";import{t as m,d as a,j as d,k as o}from"./BAACMRH5.js";import{s as k}from"./CUC98kMZ.js";import{p as s}from"./C8OURRSs.js";var h=c('<div class="back-row svelte-1qfuc04"><a class="back-link svelte-1qfuc04"><svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="19" y1="12" x2="5" y2="12"></line><polyline points="12 19 5 12 12 5"></polyline></svg> </a></div>');function y(i,r){let l=s(r,"href",8,"/reports"),n=s(r,"label",8,"Reports");var e=h(),t=a(e),p=d(a(t));o(t),o(e),m(()=>{k(t,"href",l()),v(p,` ${n()??""}`)}),f(i,e)}export{y as B};
|
|
Binary file
|
|
Binary file
|
|
@@ -1,20 +1,3 @@
|
|
|
1
|
-
/*
|
|
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/.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
1
|
/*
|
|
19
2
|
* This file is part of Plum.
|
|
20
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
Binary file
|
|
Binary file
|
|
@@ -1,20 +1,3 @@
|
|
|
1
|
-
/*
|
|
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/.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
1
|
/*
|
|
19
2
|
* This file is part of Plum.
|
|
20
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
Binary file
|
|
Binary file
|
|
@@ -1,23 +1,6 @@
|
|
|
1
|
-
/*
|
|
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/.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
1
|
/*
|
|
19
2
|
* This file is part of Plum.
|
|
20
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
21
4
|
*/
|
|
22
5
|
|
|
23
|
-
import{c as T,e as o,a as k,s as j,t as K}from"./CMBQQ9RZ.js";import"./CKDtmZUQ.js";import{f as L,ap as q,d as i,k as s,j as b,t as z}from"./BAACMRH5.js";import{i as A}from"./CgnwuKKO.js";import{b as D,a as h,d as F,c as G}from"./TOCyHP97.js";import{s as H}from"./
|
|
6
|
+
import{c as T,e as o,a as k,s as j,t as K}from"./CMBQQ9RZ.js";import"./CKDtmZUQ.js";import{f as L,ap as q,d as i,k as s,j as b,t as z}from"./BAACMRH5.js";import{i as A}from"./CgnwuKKO.js";import{b as D,a as h,d as F,c as G}from"./TOCyHP97.js";import{s as H}from"./CUC98kMZ.js";import{p as g}from"./C8OURRSs.js";function I(l){const t=l-1;return t*t*t+1}var J=K('<div class="backdrop svelte-v85iae" role="presentation"><div class="panel svelte-v85iae" role="dialog" aria-modal="true"><div class="header svelte-v85iae"><h3 class="title svelte-v85iae"> </h3> <button class="close-btn svelte-v85iae" aria-label="Close"><svg width="14" height="14" viewBox="0 0 14 14" fill="none"><path d="M1 1l12 12M13 1L1 13" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"></path></svg></button></div> <div class="body svelte-v85iae"><!></div></div></div>');function W(l,t){let c=g(t,"open",12,!1),f=g(t,"title",8,""),u=!1;function r(){c(!1)}function w(e){u=e.target===e.currentTarget}function _(e){e.target===e.currentTarget&&u&&r()}function y(e){e.key==="Escape"&&r()}var p=T();o("keydown",q,y);var M=L(p);{var x=e=>{var a=J(),n=i(a),d=i(n),v=i(d),B=i(v,!0);s(v);var C=b(v,2);s(d);var m=b(d,2),E=i(m);D(E,t,"default",{},null),s(m),s(n),s(a),z(()=>{H(n,"aria-label",f()),j(B,f())}),o("click",C,r),h(3,n,()=>F,()=>({start:.96,duration:260,easing:I})),o("mousedown",a,w),o("click",a,_),o("keydown",a,O=>O.key==="Escape"&&r()),h(3,a,()=>G,()=>({duration:200})),k(e,a)};A(M,e=>{c()&&e(x)})}k(l,p)}export{W as M};
|
|
Binary file
|
|
Binary file
|
|
@@ -1,20 +1,3 @@
|
|
|
1
|
-
/*
|
|
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/.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
1
|
/*
|
|
19
2
|
* This file is part of Plum.
|
|
20
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This file is part of Plum.
|
|
3
|
+
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import{J as L,h as n,aq as A,ar as i,as as e}from"./BAACMRH5.js";import{d as S}from"./CMBQQ9RZ.js";function d(s){if(n){var a=!1,o=()=>{if(!a){if(a=!0,s.hasAttribute("value")){var _=s.value;c(s,"value",null),s.value=_}if(s.hasAttribute("checked")){var r=s.checked;c(s,"checked",null),s.checked=r}}};s.__on_r=o,i(o),S()}}function I(s,a){var o=s.__attributes??(s.__attributes={});o.value===(o.value=a??void 0)||s.value===a&&(a!==0||s.nodeName!=="PROGRESS")||(s.value=a??"")}function N(s,a){var o=s.__attributes??(s.__attributes={});o.checked!==(o.checked=a??void 0)&&(s.checked=a)}function c(s,a,o,_){var r=s.__attributes??(s.__attributes={});n&&(r[a]=s.getAttribute(a),a==="src"||a==="srcset"||a==="href"&&s.nodeName==="LINK")||r[a]!==(r[a]=o)&&(a==="style"&&"__styles"in s&&(s.__styles={}),a==="loading"&&(s[e]=o),o==null?s.removeAttribute(a):typeof o!="string"&&R(s).includes(a)?s[a]=o:s.setAttribute(a,o))}var E=new Map;function R(s){var a=E.get(s.nodeName);if(a)return a;E.set(s.nodeName,a=[]);for(var o,_=s,r=Element.prototype;r!==_;){o=A(_);for(var t in o)o[t].set&&a.push(t);_=L(_)}return a}const B="http://localhost:3001",C=[{id:"chromium",label:"Chrome"},{id:"firefox",label:"Firefox"}],u=Object.freeze({MANUAL:"manual-trigger",CLI:"command-line-trigger",MCP:"mcp-trigger",EXTERNAL:"external-trigger",CRON:"cron"}),O=15,h=20,g=20,M=1400,v=4e3,P=900,l=3e3,D=1,G=10,U=5,p=200,k=5,y=20,Y="built-in",b="Built-in",K="all tests",W="Automated",F="Confirm",w="Delete",x="Cancel",X="Working…",H="Nothing here yet.",q="Save",z="Edit",j="Close",J="Delete",V="Clear",Z="Discord",$="Slack",Q="Email",m="Password",ss="Clear search",as="Sort by",os="Loading…",_s="Saving…",rs="Creating…",ts="Searching…",cs="? This cannot be undone.";function Es(s,a,o=`${a}s`){return s===1?a:o}export{B as A,C as B,x as C,J as D,Q as E,$ as F,z as G,I as H,P as I,k as J,p as K,os as L,U as M,D as N,G as O,m as P,O as R,as as S,u as T,X as W,h as a,v as b,ss as c,ts as d,g as e,cs as f,rs as g,_s as h,q as i,V as j,W as k,j as l,y as m,N as n,H as o,Es as p,F as q,d as r,c as s,w as t,l as u,K as v,M as w,b as x,Y as y,Z as z};
|
|
Binary file
|
|
Binary file
|
|
@@ -1,20 +1,3 @@
|
|
|
1
|
-
/*
|
|
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/.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
1
|
/*
|
|
19
2
|
* This file is part of Plum.
|
|
20
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
Binary file
|
|
Binary file
|
|
@@ -1,23 +1,6 @@
|
|
|
1
|
-
/*
|
|
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/.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
1
|
/*
|
|
19
2
|
* This file is part of Plum.
|
|
20
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
21
4
|
*/
|
|
22
5
|
|
|
23
|
-
import{p as t}from"./
|
|
6
|
+
import{p as t}from"./CUC98kMZ.js";const n="Reports",r="Passed",E="Failed",c="Reports — Plum",L="Reports",_="passing",T="Recent",l="← older · newer →",A="No reports yet. Run a test to generate one.",S="Select all on this page",i="Select",R="Delete report",p=s=>s===1?"Delete report?":`Delete ${s} reports?`,N=s=>s===1?"This will permanently remove the report and its data file.":`This will permanently remove ${s} reports and their data files.`,I=s=>`${s} ${t(s,"run")} recorded`,d=s=>`${s} passed`,u=s=>`${s} failed`,P=(s,e,a)=>`${s} · ${e} · ${a}`,O=s=>`Delete (${s})`,B="Report — Plum",D="Could not load report.",h="passed",$="failed",C="skipped",m="duration",w="Run Logs",G="Failed and was automatically retried before the final result",g="Watch replay",f="Replay",y="Screenshot",b="Step screenshot",H="No screenshot captured for this step",U=s=>`${s} runners`,W=s=>`${s} cases`,V=s=>`${s} attempts`,v=s=>`Case ${s}`,F=s=>`Step ${s} screenshot`,M=s=>s?"Pause":"Play",k=(s,e)=>`${s} / ${e}`,Y="Live Run — Plum",K="No tests currently running",x="Start a test from the panel below, then come back here to watch it live.",z="View past reports →",j="Select a run above, or wait — the report opens automatically when it finishes.",q="Live",J="Cancel run",Q="All tests passed",X="Some tests failed",Z="View Report Now",ss="Step",es="Live browser view",ts="Awaiting stream...",as="No stream...",os="Runner",ns="Running…",rs="Finished",Es="(waiting for output…)",cs=s=>s===1?"A run in progress":`${s} runs in progress`,Ls=s=>`${s} ${t(s,"worker")}`,_s=s=>`Redirecting in ${s}s…`;export{H as $,Q as A,as as B,J as C,R as D,es as E,rs as F,B as G,L as H,D as I,M as J,k as K,c as L,h as M,A as N,m as O,_ as P,W as Q,T as R,S,l as T,G as U,z as V,Es as W,V as X,g as Y,f as Z,F as _,p as a,$ as a0,C as a1,w as a2,v as a3,y as a4,b as a5,i as b,O as c,N as d,Y as e,u as f,n as g,K as h,x as i,j,cs as k,q as l,Z as m,_s as n,os as o,d as p,ns as q,I as r,r as s,P as t,E as u,U as v,Ls as w,X as x,ss as y,ts as z};
|
|
Binary file
|
|
Binary file
|
|
@@ -1,20 +1,3 @@
|
|
|
1
|
-
/*
|
|
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/.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
1
|
/*
|
|
19
2
|
* This file is part of Plum.
|
|
20
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
@@ -1,21 +1,5 @@
|
|
|
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/.
|
|
16
|
-
*/
|
|
17
|
-
/*
|
|
18
|
-
This file is part of Plum.
|
|
19
3
|
Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
20
4
|
*/
|
|
21
5
|
s �,��i�#X2���K�!&�;?h�����~���em�D`�i��N�;i�[����J����W�Hg��i�Ý��LQ�x5w����Q�`�[!�k�tK��O��f8�%��kf��V8�C���C�~��=˞�[���ȱ7�I�]_dx���7Ӌ:�'|kB k*y�I�o,8�7�%:�3. ��_��W���`�,�Ē5�#=�O��}bI&���|�n.S��7�<�"��Z��GO��F
|
|
Binary file
|
|
@@ -1,23 +1,6 @@
|
|
|
1
|
-
/*
|
|
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/.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
1
|
/*
|
|
19
2
|
* This file is part of Plum.
|
|
20
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
21
4
|
*/
|
|
22
5
|
|
|
23
|
-
import{e as m,u as h,p as k,f as q,c as g,d as c,k as _,t as b}from"./BAACMRH5.js";import{l as x,c as S,a as v,s as z,t as p,e as B}from"./CMBQQ9RZ.js";import{i as O,p as o}from"./C8OURRSs.js";import{i as T}from"./CKDtmZUQ.js";import{i as w}from"./CgnwuKKO.js";import{s as y,a as A,f as F,b as I}from"./TOCyHP97.js";import{s as L}from"./
|
|
6
|
+
import{e as m,u as h,p as k,f as q,c as g,d as c,k as _,t as b}from"./BAACMRH5.js";import{l as x,c as S,a as v,s as z,t as p,e as B}from"./CMBQQ9RZ.js";import{i as O,p as o}from"./C8OURRSs.js";import{i as T}from"./CKDtmZUQ.js";import{i as w}from"./CgnwuKKO.js";import{s as y,a as A,f as F,b as I}from"./TOCyHP97.js";import{s as L}from"./CUC98kMZ.js";import{b as M}from"./CNdcuGR0.js";function d(e,t,a){if(e.multiple)return C(e,t);for(var n of e.options){var r=l(n);if(O(r,t)){n.selected=!0;return}}(!a||t!==void 0)&&(e.selectedIndex=-1)}function j(e,t){let a=!0;m(()=>{t&&d(e,h(t),a),a=!1;var n=new MutationObserver(()=>{var r=e.__value;d(e,r)});return n.observe(e,{childList:!0,subtree:!0,attributes:!0,attributeFilter:["value"]}),()=>{n.disconnect()}})}function U(e,t,a=t){var n=!0;x(e,"change",r=>{var u=r?"[selected]":":checked",i;if(e.multiple)i=[].map.call(e.querySelectorAll(u),l);else{var s=e.querySelector(u)??e.querySelector("option:not([disabled])");i=s&&l(s)}a(i)}),m(()=>{var r=t();if(d(e,r,n),n&&r===void 0){var u=e.querySelector(":checked");u!==null&&(r=l(u),a(r))}e.__value=r,n=!1}),j(e)}function C(e,t){for(var a of e.options)a.selected=~t.indexOf(l(a))}function l(e){return"__value"in e?e.__value:e.value}var D=p("<div> </div>");function V(e,t){k(t,!1);let a=o(t,"toast",8,null);T();var n=S(),r=q(n);{var u=i=>{var s=D(),f=c(s,!0);_(s),b(()=>{y(s,`toast alert alert-${a().type??""} svelte-1fg63qf`),z(f,a().message)}),A(3,s,()=>F,()=>({y:-8,duration:240})),v(i,s)};w(r,i=>{a()&&i(u)})}v(e,n),g()}var E=p("<button><!></button>");function W(e,t){let a=o(t,"variant",8,"primary"),n=o(t,"size",8,"md"),r=o(t,"type",8,"button"),u=o(t,"disabled",8,!1);var i=E(),s=c(i);I(s,t,"default",{},null),_(i),b(()=>{L(i,"type",r()),i.disabled=u(),y(i,`btn ${a()??""} ${n()??""} svelte-m1euen`)}),B("click",i,function(f){M.call(this,t,f)}),v(e,i)}export{W as B,V as T,U as b,j as i,d as s};
|
|
Binary file
|
|
Binary file
|
|
@@ -1,20 +1,3 @@
|
|
|
1
|
-
/*
|
|
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/.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
1
|
/*
|
|
19
2
|
* This file is part of Plum.
|
|
20
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This file is part of Plum.
|
|
3
|
+
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import{w as n,B as s}from"./BAACMRH5.js";import{B as d}from"./CUC98kMZ.js";import{a as g}from"./C1Vid6wz.js";const E=Object.freeze({RUN_TEST:"run-test",CANCEL_TEST:"cancel-test",LOG:"log",DONE:"done",STEP_SCREENSHOT:"step-screenshot",RUNNER_LANES_INIT:"runner-lanes-init",RUNNER_LANE_LOG:"runner-lane-log",RUNNER_LANE_STATUS:"runner-lane-status",RUNNER_LANE_SCREENSHOT:"runner-lane-screenshot",BG_RUN_START:"bg-run-start",BG_RUN_LOG:"bg-run-log",BG_RUN_DONE:"bg-run-done",BG_RUN_SCREENSHOT:"bg-run-screenshot",BG_RUN_LANES_INIT:"bg-run-lanes-init",BG_RUN_LANE_LOG:"bg-run-lane-log",BG_RUN_LANE_STATUS:"bg-run-lane-status",BG_RUN_LANE_SCREENSHOT:"bg-run-lane-screenshot",REPORT_READY:"report-ready"}),N=n(null),T=n({output:"",running:!1,testCompleted:!1,latestReportId:null,status:"idle",lastRunId:"",lanes:[],currentRun:null,latestScreenshot:null}),f=n({workers:1,testID:"",browser:d[0].id,selectedRunners:["built-in"]}),b=n(!1),O=n(!0),A=n(0),C=n(0),I=n({});function m(e,_,r={},a=null){var c;const u=s(N);if(!u)return;const{workers:l,testID:i,browser:o,selectedRunners:R}=s(f),t=(e!==void 0?e:i).trim().replace(/\sOR\s/gi,S=>S.toLowerCase());T.set({output:`Running: ${t||"(all tests)"}
|
|
7
|
+
`,running:!0,testCompleted:!1,latestReportId:null,status:"running",lastRunId:t,lanes:[],currentRun:{tag:t,workers:l,browser:o,runners:R,runTitle:a},latestScreenshot:null}),b.set(!0),u.emit(E.RUN_TEST,{tag:t,workers:l,browser:o,runners:R,testRunId:_??null,notifyDiscord:r.notifyDiscord??!1,notifySlack:r.notifySlack??!1,runTitle:a,startedBy:((c=s(g).user)==null?void 0:c.name)??null})}function B(){const e=s(N);e&&e.emit(E.CANCEL_TEST)}export{E as S,A as a,I as b,T as c,B as d,f as e,O as f,b as p,C as r,N as s,m as t};
|
|
Binary file
|
|
Binary file
|
|
@@ -1,23 +1,6 @@
|
|
|
1
|
-
/*
|
|
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/.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
1
|
/*
|
|
19
2
|
* This file is part of Plum.
|
|
20
3
|
* Licensed under the MIT License. See LICENSE file in the project root for details.
|
|
21
4
|
*/
|
|
22
5
|
|
|
23
|
-
import{s as x,e as m,a as C,t as h}from"./CMBQQ9RZ.js";import{i as E}from"./CKDtmZUQ.js";import{p as A,A as M,c as I,f as N,d as n,k as c,j as v,t as k}from"./BAACMRH5.js";import{b as B}from"./TOCyHP97.js";import{p as a}from"./C8OURRSs.js";import{M as O}from"./
|
|
6
|
+
import{s as x,e as m,a as C,t as h}from"./CMBQQ9RZ.js";import{i as E}from"./CKDtmZUQ.js";import{p as A,A as M,c as I,f as N,d as n,k as c,j as v,t as k}from"./BAACMRH5.js";import{b as B}from"./TOCyHP97.js";import{p as a}from"./C8OURRSs.js";import{M as O}from"./CMEtqUfQ.js";import{q as R,t as y,C as F,W as T}from"./CUC98kMZ.js";var W=h('<div class="body svelte-ibsxog"><!></div> <div class="actions svelte-ibsxog"><button class="btn-danger svelte-ibsxog"> </button> <button class="btn-cancel svelte-ibsxog"></button></div>',1);function H(b,t){A(t,!1);let s=a(t,"open",12,!1),p=a(t,"title",8,R),u=a(t,"confirmLabel",8,y),o=a(t,"loading",8,!1);const g=M();E(),O(b,{get title(){return p()},get open(){return s()},set open(l){s(l)},children:(l,j)=>{var d=W(),i=N(d),_=n(i);B(_,t,"default",{},null),c(i);var f=v(i,2),e=n(f),L=n(e,!0);c(e);var r=v(e,2);r.textContent=F,c(f),k(()=>{e.disabled=o(),x(L,o()?T:u()),r.disabled=o()}),m("click",e,()=>g("confirm")),m("click",r,()=>s(!1)),C(l,d)},$$slots:{default:!0},$$legacy:!0}),I()}export{H as C};
|
|
Binary file
|