clearMocks

  • 类型: boolean
  • 默认值: false

清除所有 mock 的 mock.callsmock.instancesmock.contextsmock.results 属性。

当启用 clearMocks 时,rstest 将在每个测试用例执行之前调用 .clearAllMocks()

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

export default defineConfig({
  clearMocks: true,
});