Top "Jestjs" questions

Jest is a JavaScript unit testing framework made by Facebook based on Jasmine and provides automated mock creation and a jsdom environment.

How do I deal with localStorage in jest tests?

I keep getting "localStorage is not defined" in Jest tests which makes sense but what are my options? Hitting brick …

jestjs
Axios catch error Request failed with status code 404

I'm testing a login component that uses Axios. I tried mocking Axios with axios-mock-adapter, but when I run the tests, …

unit-testing vue.js jestjs axios axios-mock-adapter
Console.log statements output nothing at all in Jest

console.log statements output nothing at all in Jest. This was working for me yesterday, and all of sudden, it's …

jestjs console.log
How to write a Jest configuration file

I am trying to pass along a configuration file to Jest in order to run tests only from a given …

javascript jestjs
How to test a className with Jest and React testing library

I am totally new to JavaScript testing and working in a new codebase. I would like to write a test …

javascript reactjs jestjs react-testing-library
How to run Jest tests sequentially?

I'm running Jest tests via npm test. Jest runs tests in parallel by default. Is there any way to make …

jestjs
How to mock an exported const in jest

I have a file that relies on an exported const variable. This variable is set to true but if ever …

javascript reactjs unit-testing jestjs
Mocking `document` in jest

I'm trying to write tests for my web components projects in jest. I already use babel with es2015 preset. I'm …

jestjs jsdom babel-jest
Jest - how to test if a component does not exist?

How do I check if a component is not present, i.e. that a specific component has not been rendered?

jestjs enzyme
How can I use Jest to spy on a method call?

I recently wanted to test that some custom method gets conditionally called in the componentDidMount method of a React component. …

javascript reactjs testing jestjs enzyme