test: oprava Playwright testů
CI / Generate TypeScript types (push) Successful in 10s
CI / Server unit tests (push) Successful in 19s
CI / Build server (push) Successful in 27s
CI / Build client (push) Successful in 33s
CI / Playwright E2E tests (push) Failing after 17m56s
CI / Build and push Docker image (push) Has been skipped
CI / Notify (push) Successful in 2s

This commit is contained in:
2026-05-07 14:52:42 +02:00
parent 8a588cf486
commit b591411d10
+1 -1
View File
@@ -201,7 +201,7 @@ app.use("/api/changelogs", changelogRoutes);
app.use("/api/groups", groupRoutes); app.use("/api/groups", groupRoutes);
app.use("/api/stores", storeRoutes); app.use("/api/stores", storeRoutes);
app.get('*', (_req, res) => { app.get('*splat', (_req, res) => {
res.sendFile(path.join(process.cwd(), 'public', 'index.html')); res.sendFile(path.join(process.cwd(), 'public', 'index.html'));
}); });