feat: Puente Mayúscula-Minúscula + TTS SpeechSynthesis + E2E fixes

This commit is contained in:
renato97
2026-07-21 15:31:46 -03:00
commit fa8e0c58ce
120 changed files with 16013 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
import { defineConfig } from "@playwright/test"
export default defineConfig({
testDir: "./e2e",
timeout: 30000,
expect: { timeout: 5000 },
fullyParallel: false,
retries: 0,
workers: 1,
reporter: [["list"]],
use: {
baseURL: "http://localhost:3459",
trace: "on-first-retry",
},
webServer: {
command: "npx next dev -p 3459",
url: "http://localhost:3459",
reuseExistingServer: false,
timeout: 30000,
},
})