Skip to content
Advertisement

Issue with setting up jest mock

I have the following function that is used within cypress tests for which I want to do unit testing (filterTests.js):

JavaScript

A test double for Cypress.env needs to be created. I’m not sure if this would technically be considered a stub, mock, fake, dummy, etc…, but the philosophical discussion isn’t the focus right now. It looks like in the Cypress world, everything is lumped together under ‘mock’.

I started down the path of something like this in the Jest test file:

JavaScript

But for that I get the error message:

JavaScript

I believe what is complicating this situation is that Cypress is not explicitly imported in filterTests.js

Advertisement

Answer

I think you might just want to set the env value at the top of the test

JavaScript

Further info – Cypress has a cy.spy() which wraps a method and records it’s calls but otherwise leaves it’s result the same.

Also cy.stub() which records calls but also provides a fake result.


Jest globals

If you are running the test in Jest, then the Cypress global should be able to be mocked simply by setting it up

JavaScript

Note I expect this will only work with simple cases. Cypress wraps jQuery, Chai and Mocha so they behave slightly differently when a Cypress test runs. If the function you test uses any of those features, even implicitly (like command retry), then Jest will not reproduce the right environment.

My recommendation, test Cypress with Cypress.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement