mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 10:56: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
|
### Jest Configuration
|
||||||
|
|
||||||
In `package.json`:
|
```js
|
||||||
|
// jest.config.js
|
||||||
```json
|
module.exports = {
|
||||||
{
|
testEnvironment: 'jsdom',
|
||||||
// ...
|
moduleFileExtensions: ['js', 'jsx', 'ts', 'tsx', 'json', 'node'],
|
||||||
"scripts": {
|
setupFilesAfterEnv: ['@testing-library/jest-dom/extend-expect'], // add testing-library methods to expect()
|
||||||
"test": "jest --watch" // watch re-runs test on save
|
transform: { '^.+\\.tsx?$': 'ts-jest'} // use ts-jest fo ts files
|
||||||
},
|
|
||||||
"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"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
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
|
### Jest Tests
|
||||||
|
|
||||||
[Expect docs](https://jestjs.io/docs/expect)
|
[Expect docs](https://jestjs.io/docs/expect)
|
||||||
|
|
Loading…
Add table
Reference in a new issue