diff --git a/index.html b/index.html index d0f94ae..725a625 100644 --- a/index.html +++ b/index.html @@ -36,18 +36,7 @@ margin: 0; } - + diff --git a/playwright-report/index.html b/playwright-report/index.html index cf2e633..9bbb303 100644 --- a/playwright-report/index.html +++ b/playwright-report/index.html @@ -82,4 +82,4 @@ Error generating stack: `+n.message+`
- \ No newline at end of file + \ No newline at end of file diff --git a/playwright.config.ts b/playwright.config.ts index 3529dc7..3b7b3c8 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -2,10 +2,11 @@ import { defineConfig, devices } from '@playwright/test'; export default defineConfig({ testDir: './tests', - fullyParallel: true, + fullyParallel: false, forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 0, - workers: process.env.CI ? 1 : undefined, + workers: 1, + timeout: 60000, reporter: 'html', use: { baseURL: 'http://localhost:3000', diff --git a/server/prisma/test.db b/server/prisma/test.db index 48a66fb..71a3110 100644 Binary files a/server/prisma/test.db and b/server/prisma/test.db differ diff --git a/src/components/Plans.tsx b/src/components/Plans.tsx index 22098ce..8a9f246 100644 --- a/src/components/Plans.tsx +++ b/src/components/Plans.tsx @@ -377,6 +377,7 @@ const Plans: React.FC = ({ lang }) => { onClick={(e) => handleDelete(plan.id, e)} variant="ghost" size="icon" + aria-label="Delete Plan" className="text-on-surface-variant hover:text-error hover:bg-white/5" > @@ -387,6 +388,7 @@ const Plans: React.FC = ({ lang }) => { onClick={(e) => { e.stopPropagation(); handleEdit(plan); }} variant="ghost" size="icon" + aria-label="Edit Plan" className="text-on-surface-variant hover:text-primary hover:bg-white/5" > @@ -415,6 +417,7 @@ const Plans: React.FC = ({ lang }) => { {/* FAB */}