Search
string[]
['**/node_modules/**', '**/dist/**', '**/.{idea,git,cache,output,temp}/**']
A list of glob patterns that should be excluded from your test files.
Exclude the test files under node_modules:
node_modules
import { defineConfig } from '@rstest/core'; export default defineConfig({ include: ['**/*.{test,spec}.?(c|m)[jt]s?(x)'], exclude: ['**/node_modules/**'], });