mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-05 18:36:41 +00:00
Update jest config for react
This commit is contained in:
parent
2dadc58f03
commit
ffc085d78a
1 changed files with 7 additions and 33 deletions
|
@ -4,42 +4,16 @@
|
|||
|
||||
### Jest Configuration
|
||||
|
||||
In `package.json`:
|
||||
|
||||
```json
|
||||
{
|
||||
// ...
|
||||
"scripts": {
|
||||
"test": "jest --watch" // watch re-runs test on save
|
||||
},
|
||||
"jest": {
|
||||
// calls additional setups for enzyme, react testing library, ...
|
||||
"setupFiles": [
|
||||
"path/to/testSetup.js"
|
||||
],
|
||||
"moduleNameMapper": {
|
||||
// file imports to ignore
|
||||
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "path/to/fileMock.js",
|
||||
"\\.(css|less)$": "path/to/styleMock.js"
|
||||
}
|
||||
},
|
||||
```js
|
||||
// jest.config.js
|
||||
module.exports = {
|
||||
testEnvironment: 'jsdom',
|
||||
moduleFileExtensions: ['js', 'jsx', 'ts', 'tsx', 'json', 'node'],
|
||||
setupFilesAfterEnv: ['@testing-library/jest-dom/extend-expect'], // add testing-library methods to expect()
|
||||
transform: { '^.+\\.tsx?$': 'ts-jest'} // use ts-jest fo ts files
|
||||
}
|
||||
```
|
||||
|
||||
In `fileMock.js`:
|
||||
|
||||
```js
|
||||
// Mocks file imports for Jest. As suggested by https://jestjs.io/docs/en/webpack
|
||||
module.exports = "test-file-stub";
|
||||
```
|
||||
|
||||
In `styleMock.js`:
|
||||
|
||||
```js
|
||||
// Mocks CSS imports for Jest. As suggested by https://jestjs.io/docs/en/webpack
|
||||
module.exports = {};
|
||||
```
|
||||
|
||||
### Jest Tests
|
||||
|
||||
[Expect docs](https://jestjs.io/docs/expect)
|
||||
|
|
Loading…
Add table
Reference in a new issue