From c9f5af2e9484888685ffd1bd7e1150e39ec96d34 Mon Sep 17 00:00:00 2001 From: Ben Hutton Date: Thu, 28 Oct 2021 11:25:41 +0100 Subject: [PATCH] Fix basic typo (#6783) --- docs/core-plugins/unit-jest.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: