From 98e115030faec504c61c9948c2b43793195ec5e5 Mon Sep 17 00:00:00 2001 From: woothu <32914662+woothu@users.noreply.github.com> Date: Wed, 23 Oct 2019 16:48:51 +0200 Subject: [PATCH] fix: fix icons transformIgnorePatterns in jest.config.js --- jest.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jest.config.js b/jest.config.js index f598a6b1..cd689271 100644 --- a/jest.config.js +++ b/jest.config.js @@ -10,7 +10,7 @@ module.exports = { '.+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$': 'jest-transform-stub', '^.+\\.(js|jsx)?$': '/node_modules/babel-jest' }, - transformIgnorePatterns: ['/node_modules/(?!@coreui/icons/vue|coreui)'], + transformIgnorePatterns: ['/node_modules/(?!@coreui/icons)'], moduleNameMapper: { '^@/(.*)$': '/src/$1' },