Table of Contents
- Jest Basic
- Directory Structure
- Basic Syntax
- Assertions
- Async tests
- LifeCycle
- Create mock functions
- Jest commands
- Test with Enzyme
- References
Jest Basic
Jest is a JavaScript unit testing framework built by Facebook.
Directory Structure
The directory structure for testing would looks something like the following.
- myProgram.js
- __tests__
- myProgram-test.jsBasic Syntax
Each test file looks something like this:
const MathModule = require('../myMath') // 1
describe('my math module', () => {
// 2
it('adds two numbers', () => {
// 3
// Your testing code goes here
})
})describedefines a set of tests.itdefines a single test.
You can run the test with jest command.
$ jestAssertions
expect(value).toBe(something)Useful matchers
toBe: compare 2 values using===operator.
expect(2).toBe(2) // OKtoEqual: recursively compares two values.
expect({}).toEqual({}) // OKtoContain: makes sure the array has the given item.
expect([1, 2, 3]).toContain(1) // OKtoThrow: checks if the given function throws an error.
expect(() => {
undefined()
}).toThrow() // OKnot: useful to inverse the expectation.
expect(2).not.toBe(4) // OKYou can see other matchers here.
Async tests
JavaScript relies on callbacks in many cases and Jest supports testing asynchronous code.
describe('my async module', () => {
it('supports promises', () => {
return new Promise((resolve) => {
setTimeout(resolve, 1000);
})
});
it('supports async/await', async () => {
await saveUser({...});
});
});LifeCycle
If you need to add some setup/teardown logic, use beforeEach/afterEach and beforeAll/afterAll:
describe('my math module', () => {
beforeAll(() => {
console.log('This is executed before the test suite')
})
beforeEach(() => {
console.log('This is executed before each testcase')
})
it('adds two numbers', () => {
expect(() => {
undefined()
}).toThrow()
})
})Create mock functions
jest.fn creates a mock function.
const add = jest.fn() //=> returns an empty function
const num = jest.fn(() => 3) //=> returns 3Jest commands
Run one file
$ ./node_modules/.bin/jest --watchpress p and put the file.
src/components/__tests__/main/index.jsRun all tests
$ ./node_modules/.bin/jestCreate Coverage Report
$ ./node_modules/.bin/jest --coverageDisplay individual test results
$ ./node_modules/.bin/jest --verboseTest with Enzyme
Enzyme is a JavaScript Testing utility for React that makes it easier to test your React Components’ output.
Set up
npm install --save-dev enzyme enzyme-adapter-react-16 react-test-renderercreate src/setupTests.js file.
If you don’t create this file, you have to define the code below in each test file.
import { configure } from 'enzyme'
import Adapter from 'enzyme-adapter-react-16'
configure({ adapter: new Adapter() })You also have to create .babelrc and paste the code below.
{
"presets": [
[
"@babel/preset-env",
{
"modules": "commonjs"
}
],
"@babel/preset-react"
]
}Shallow()
if you want to test the <App /> component, you can extend our App.test.js file by adding the following.
The shallow() will test the provided component and ignores any child components that may be present in the component tree thereafter. if we had a <Header /> and <Footer /> component within <App /> for example, they would be ignored in this test.
import React from 'react'
import { shallow } from 'enzyme'
import App from './App'
describe('First React component test with Enzyme', () => {
it('renders without crashing', () => {
shallow(<App />)
})
})Find nodes
You can find a class called headerComponet from shallow copied Header like the code below.
describe('Header Component', () => {
it('should render without errors', () => {
const component = shallow(<Header />)
const wrapper = component.find('.headerComponent')
expect(wrapper.length).toBe(1)
})
})Debug components
You can use debug() like the code below.
configure({ adapter: new Adapter() })
describe('It should render without errors', () => {
it('should render without errors', () => {
const component = shallow(<Header />)
const wrapper = component.find('.headerComponent')
console.log(component.debug())
})
})The output would be something like this.
<header className="headerComponent">
<h1>Header!!</h1>
</header>beforeEach and setUp function
The code below is referenced from here
import React from 'react'
import { shallow } from 'enzyme'
import Footer from '../../Footer'
import { configure } from 'enzyme'
import Adapter from 'enzyme-adapter-react-16'
configure({ adapter: new Adapter() })
// props = {} means that the empty {} would be passed to props if nothing is passed to props.
const setUp = (props = {}) => {
const component = shallow(<Footer {...props} />)
return component
}
describe('Footer Component', () => {
let component
beforeEach(() => {
component = setUp()
})
it('should render without errors', () => {
const wrapper = component.find('.footerComponent')
expect(wrapper.length).toBe(1)
})
})Simulate events
You can simulate events using simulate like the code below.
describe('Button Component', () => {
it('should simulate click event', () => {
const component = setUp()
expect(component.find('.click-0').length).toBe(0)
// simulate click event and increment the number!!!
component.find('a').simulate('click')
expect(component.find('.clicks-1').length).toBe(1)
})
})More about this topic, check here.