> For AI agents: the complete documentation index is available at /zh/llms.txt, the full documentation bundle is available at /zh/llms-full.txt.

# slowTestThreshold

- **类型：** `number`
- **默认值：** `300`
- **CLI：** `--slowTestThreshold=300`

测试运行时间超过指定毫秒数时，被认为是缓慢的并在报告结果中显示。


**CLI**

```bash
npx rstest --slowTestThreshold=300
```


**rstest.config.ts**

```ts
import { defineConfig } from '@rstest/core';

export default defineConfig({
  slowTestThreshold: 300,
});
```

