From 21912a9c024ef326eb1ebf4b15c2715c7337a6fc Mon Sep 17 00:00:00 2001 From: xidedix Date: Wed, 27 Jun 2018 15:31:42 +0200 Subject: [PATCH] fix(temp): for Jest testMatch issue --- jest.config.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/jest.config.js b/jest.config.js index d4f0822e..0d8b4f1f 100644 --- a/jest.config.js +++ b/jest.config.js @@ -17,6 +17,7 @@ module.exports = { 'jest-serializer-vue' ], testMatch: [ - '/(tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx))' + '/(tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx))', + '/tests/unit/Dashboard.spec.js' ] -} \ No newline at end of file +}