From 46fd547e33e763676040aa6e263950d9f4073889 Mon Sep 17 00:00:00 2001 From: nmccready Date: Mon, 26 Aug 2019 09:50:07 -0400 Subject: [PATCH] remove debug from jest --- jest.config.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/jest.config.js b/jest.config.js index 4616705..b6b9f67 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,5 +1,3 @@ -const debug = require('./debug').spawn('jest'); - const toNotIgnore = { modules: [].join('|'), }; @@ -22,6 +20,4 @@ if (toNotIgnore.modules.length) { toExport.transformIgnorePatterns.push(`/node_modules/(?!(${toNotIgnore.modules}))`); } -debug(() => toExport.transformIgnorePatterns); - module.exports = toExport;