From f130d9a459777ce2b9976d9c17de45eb342d9641 Mon Sep 17 00:00:00 2001 From: Marco Ambrosini Date: Tue, 13 Sep 2022 16:22:03 +0200 Subject: [PATCH] Fix tests Signed-off-by: Marco Ambrosini --- jest.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jest.config.js b/jest.config.js index 418d60d632..fde356dfda 100644 --- a/jest.config.js +++ b/jest.config.js @@ -32,6 +32,7 @@ const ignorePatterns = [ 'strip-ansi', 'ansi-regex', 'char-regex', + 'uuid', ] module.exports = { @@ -40,7 +41,6 @@ module.exports = { testMatch: ['/src/**/*.(spec|test).(ts|js)'], transformIgnorePatterns: [ 'node_modules/(?!(' + ignorePatterns.join('|') + ')/)', - '/node_modules/(?!vue-material-design-icons|uuid)', ], resetMocks: false, setupFiles: ['jest-localstorage-mock'],