Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mock doest not record api call after calling resetHistory() #361

Open
nguyenhoanglam opened this issue Jan 27, 2023 · 0 comments
Open

Mock doest not record api call after calling resetHistory() #361

nguyenhoanglam opened this issue Jan 27, 2023 · 0 comments

Comments

@nguyenhoanglam
Copy link

Here is my test code

it('should call update api', async () => {
    axios.resetHistory();
    axios.onPost('api/update').reply(200, {});

    // userService.update() should call axios.post('api/update')
    await userService.update({name: "Test"});
    expect(axios.history.post.length).toBe(1);
  });

I expect post.length should be 1 but received 0. It looks like the mock doest not record any api call after calling resetHistory. Any help please?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant