[Jest] Set up Testing Globals in an Application with Jest
For some React component testing, we have common setup in each test file:
import { render } from 'react-testing-library' import 'jest-dom/extend-expect' import 'react-testing-library/cleanup-after-each'
SRE实战 互联网时代守护先锋,助力企业售后服务体系运筹帷幄!一键直达领取阿里云限量特价优惠。
We want to setup a common place for JEST to load those scripts:
// jest.config.js module.exports = { setupTestFrameworkScriptFile: '<rootDir>/testSetup.js' }
// testSetup.js import 'jest-dom/extend-expect' import 'react-testing-library/cleanup-after-each'
Then for component test file, we can remove those two lines.

更多精彩