Fix Vitest browser provider setup and test cleanup
- Add @vitest/browser-playwright; use playwright() factory (not string) - Import page from vitest/browser (not deprecated @vitest/browser/context) - Add afterEach(cleanup) so each test gets a fresh DOM - Use oxc transform for JSX instead of esbuild (avoids Vite 8 warning) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
49c0b2d1f4
commit
fcc4f88379
4 changed files with 37 additions and 14 deletions
|
|
@ -1,5 +1,6 @@
|
|||
import { defineConfig } from "vitest/config";
|
||||
import { resolve } from "node:path";
|
||||
import { playwright } from "@vitest/browser-playwright";
|
||||
|
||||
// Separate config for Vitest browser visual regression tests.
|
||||
// Run with: pnpm --filter @trails-cool/planner test:visual
|
||||
|
|
@ -10,8 +11,8 @@ import { resolve } from "node:path";
|
|||
// (.github/workflows/update-visual-snapshots.yml), triggered manually or
|
||||
// by adding the `update-snapshots` label to a PR.
|
||||
export default defineConfig({
|
||||
esbuild: {
|
||||
jsx: "automatic",
|
||||
oxc: {
|
||||
transform: { react: {} },
|
||||
},
|
||||
resolve: {
|
||||
alias: {
|
||||
|
|
@ -23,10 +24,7 @@ export default defineConfig({
|
|||
include: ["app/**/*.browser.test.{ts,tsx}"],
|
||||
browser: {
|
||||
enabled: true,
|
||||
// Provider is resolved from whichever @vitest/browser peer is installed.
|
||||
// playwright is the default when @playwright/test is available.
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
provider: "playwright" as any,
|
||||
provider: playwright(),
|
||||
instances: [{ browser: "chromium" }],
|
||||
},
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue