我试图用它来测试一个函数是否被调用。我注意到mock.calls.length并不是每次测试都会重置,而是会累积。我怎么能在每次测试前让它为0呢?我不希望我下次的检查结果取决于上次的结果。

我知道在Jest中有beforeEach -我应该用它吗?重置mock.calls.length的最佳方法是什么?

代码示例:

Sum.js:

import local from 'api/local';

export default {
  addNumbers(a, b) {
    if (a + b <= 10) {
      local.getData();
    }
    return a + b;
  },
};

Sum.test.js

import sum from 'api/sum';
import local from 'api/local';
jest.mock('api/local');

// For current implementation, there is a difference 
// if I put test 1 before test 2. I want it to be no difference

// test 1
test('should not to call local if sum is more than 10', () => {
  expect(sum.addNumbers(5, 10)).toBe(15);
  expect(local.getData.mock.calls.length).toBe(0);
});

// test 2
test('should call local if sum <= 10', () => {
  expect(sum.addNumbers(1, 4)).toBe(5);
  expect(local.getData.mock.calls.length).toBe(1);
});

我发现的一种处理方法是:在每次测试后清除mock函数:

添加到Sum.test.js:

afterEach(() => {
  local.getData.mockClear();
});

如果您想在每次测试后清除所有模拟函数,请使用clearAllMocks

afterEach(() => {
  jest.clearAllMocks();
});

正如@AlexEfremov在评论中指出的那样。你可能想在每个测试之后使用clearAllMocks:

afterEach(() => {
    jest.clearAllMocks();
});

请记住,这将清除您拥有的每个模拟函数的调用计数,但这可能是正确的方法。


你可以配置Jest在每次测试后重置或清除mock,把这些参数中的一个放在Jest .config.js中:

module.exports = {
  resetMocks: true,
};

or

module.exports = {
  clearMocks: true,
};

以下是文档:

https://jestjs.io/docs/en/configuration#resetmocks-boolean

resetMocks(布尔) 默认值:假 每次测试前自动重置模拟状态。相当于在每次测试之前调用jest.resetAllMocks()。这将导致任何mock的伪实现被删除,但不会恢复它们的初始实现。

https://jestjs.io/docs/configuration#clearmocks-boolean

clearMocks(布尔) 默认值:假 每次测试前自动清除模拟调用、实例和结果。相当于在每次测试之前调用jest.clearAllMocks()。这不会删除可能已经提供的任何模拟实现。


你可以在命令中添加——resetMocks选项: npx jest—resetMocks

在每个测试之间自动重置模拟状态。相当于 调用jest.resetAllMocks ()


在每次测试后清除单个模拟函数,(这可能对点击此url的人有用)

import { methodName } from '../Path-to-file-with-methodName';

methodName.mockReturnValue(null );

    describe('my component', ()=> {
      afterEach(() => {
        methodName.mockClear();
      });
      
      it('should call my method on mount', () => {
        const wrapper = mount(<AComponent  {...props} />);
        expect(methodName).toHaveBeenCalledTimes(1);
      })
      it('should call my method on mount again', () => {
        const wrapper = mount(<AComponent  {...props} />);
        expect(methodName).toHaveBeenCalledTimes(1);
      })
    });

 

jest.clearAllMocks ();并没有为我清除所有的mock。

afterEach(() => {
    jest.restoreAllMocks();
}); 

终于帮我在玩笑中洗脱了间谍的嫌疑