Add bracket browser tests (#2714)

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Kalle 2026-01-11 20:40:24 +02:00 committed by GitHub
parent b2c975934c
commit 4aab22cdf0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1100 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@ -6,6 +6,17 @@ const headless = process.env.BROWSER_HEADLESS === "true";
export default defineConfig({
plugins: [tsconfigPaths()],
optimizeDeps: {
include: [
"react",
"react/jsx-runtime",
"react/jsx-dev-runtime",
"react-dom",
"react-dom/client",
"react-router",
"react-use-draggable-scroll",
],
},
test: {
name: "browser",
include: ["**/*.browser.test.{ts,tsx}"],