Search
string[]
['**/*.{test,spec}.?(c|m)[jt]s?(x)']
rstest **/*.test.ts
rstest index.test.ts
匹配 glob 规则的文件将被视为测试文件。
import { defineConfig } from '@rstest/core'; export default defineConfig({ include: ['**/*.{test,spec}.?(c|m)[jt]s?(x)'], });