[READ-ONLY] Mirror of https://github.com/vitest-dev/vitest. Next generation testing framework powered by Vite. vitest.dev
test testing-tools vite
12

Configure Feed

Select the types of activity you want to include in your feed.

docs: fix the file extension glob pattern (#10366)

authored by

ghazi-git and committed by
GitHub
(May 19, 2026, 12:03 PM +0200) 10075860 3003c432

+2 -2
+2 -2
docs/config/include.md
··· 25 25 test: { 26 26 include: [ 27 27 './test', 28 - './**/*.{test,spec}.tsx?', 28 + './**/*.{test,spec}.ts(x)?', 29 29 ], 30 30 }, 31 31 }) ··· 67 67 include: [ 68 68 ...configDefaults.include, 69 69 './test', 70 - './**/*.{test,spec}.tsx?', 70 + './**/*.{test,spec}.ts(x)?', 71 71 ], 72 72 }, 73 73 })