Skip to content
  •  
  •  
  •  
63 changes: 61 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
"test:coverage": "vitest run --coverage",
"test:api": "vitest run --config tests/vitest.api.config.ts",
"test:e2e": "playwright test",
"i18n:check": "tsx scripts/check-translations.ts",
"i18n:check:verbose": "tsx scripts/check-translations.ts --verbose",
"i18n:find-hardcoded": "tsx scripts/find-hardcoded-text.ts",
"hold-my-beer": "npm run format && npm run lint && npm run types && npm run check && npm run build-check && npm run test"
},
"devDependencies": {
Expand Down Expand Up @@ -52,6 +55,7 @@
"sass-embedded": "^1.91.0",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tsx": "^4.20.6",
"typescript": "^5.0.0",
"typescript-eslint": "^8.44.0",
"vite": "^7.0.4",
Expand Down
6 changes: 3 additions & 3 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ export default defineConfig({
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 1 : undefined,
timeout: 30000,
timeout: 45000, // 45 secs for translation bundle
expect: {
timeout: 5000,
timeout: 6000, // 6 sec
},
reporter: [
['github'],
Expand Down Expand Up @@ -37,7 +37,7 @@ export default defineConfig({
webServer: {
command: 'npm run build && npm run preview',
port: 4173,
timeout: 120000,
timeout: 180000, // 3 fucking minutes.
reuseExistingServer: !process.env.CI,
},
});
Loading
Loading