Search
boolean
false
清除所有 mock 的 mock.calls、mock.instances、mock.contexts 和 mock.results 属性。
mock.calls
mock.instances
mock.contexts
mock.results
当启用 clearMocks 时,rstest 将在每个测试用例执行之前调用 .clearAllMocks()。
clearMocks
import { defineConfig } from '@rstest/core'; export default defineConfig({ clearMocks: true, });