diff --git a/docs/core-plugins/unit-jest.md b/docs/core-plugins/unit-jest.md index ef9a85118f..998d08dc91 100644 --- a/docs/core-plugins/unit-jest.md +++ b/docs/core-plugins/unit-jest.md @@ -60,7 +60,7 @@ transformIgnorePatterns: ['/node_modules/'] We have to add exceptions to this pattern with a RegExp negative lookahead: ```javascript -transformIgnorePatterns: ['/node_modules/(?!name-of-lib-o-transform)'] +transformIgnorePatterns: ['/node_modules/(?!name-of-lib-to-transform)'] ``` To exclude multiple libraries: