From ffc085d78a6dd3fc5ef57a880c26344827c5765c Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Thu, 5 May 2022 17:50:45 +0200 Subject: [PATCH] Update jest config for react --- JavaScript/React/React Tests.md | 40 ++++++--------------------------- 1 file changed, 7 insertions(+), 33 deletions(-) diff --git a/JavaScript/React/React Tests.md b/JavaScript/React/React Tests.md index c406ebf..5eec208 100644 --- a/JavaScript/React/React Tests.md +++ b/JavaScript/React/React Tests.md @@ -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)