Skip to content

Commit f95687e

Browse files
natewclaude
andcommitted
fix vitest excluding playwright e2e tests
Add e2e folder to vitest exclude patterns to prevent Vitest from attempting to run Playwright test files. Remove duplicate vitest config in apps/next. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 9e6a287 commit f95687e

2 files changed

Lines changed: 6 additions & 11 deletions

File tree

apps/next/vitest.config.mts

Lines changed: 0 additions & 11 deletions
This file was deleted.

vitest.config.mts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ import { defineConfig } from 'vitest/config'
22

33
export default defineConfig({
44
test: {
5+
exclude: [
6+
'**/node_modules/**',
7+
'**/dist/**',
8+
'**/e2e/**',
9+
'**/.next/**',
10+
],
511
poolOptions: {
612
threads: {
713
singleThread: true,

0 commit comments

Comments
 (0)