From 4ff8719a79516d81083abf98ea7598e805f4a20d Mon Sep 17 00:00:00 2001 From: Esteban Beltran Date: Tue, 25 Oct 2022 08:54:10 +0200 Subject: [PATCH] Instruct jest to transform all packages (including all inside node_modules) (#112) --- .../create-plugin/templates/common/.config/jest.config.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/create-plugin/templates/common/.config/jest.config.js b/packages/create-plugin/templates/common/.config/jest.config.js index 97067b040..165755a60 100644 --- a/packages/create-plugin/templates/common/.config/jest.config.js +++ b/packages/create-plugin/templates/common/.config/jest.config.js @@ -32,7 +32,5 @@ module.exports = { }, ], }, - transformIgnorePatterns: [ - 'node_modules/(?!(ol)/)', // <- exclude the open layers library - ], + transformIgnorePatterns: [], };