From 9d6a945d955d2cc8480ac9abe76ccbcecc3198d8 Mon Sep 17 00:00:00 2001 From: Jorge Date: Tue, 16 Apr 2019 11:58:54 +0100 Subject: [PATCH 1/2] Ignore .git folder in unit test execution --- test/unit/jest.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/unit/jest.config.js b/test/unit/jest.config.js index 6c5db3c8db011..6e11ce2f703b2 100644 --- a/test/unit/jest.config.js +++ b/test/unit/jest.config.js @@ -19,6 +19,7 @@ module.exports = { ], testURL: 'http://localhost', testPathIgnorePatterns: [ + '/.git/', '/node_modules/', '/packages/e2e-tests', '/.*/build/', From f1a8c0d2351a8754f1a48a90deb3c615ee955416 Mon Sep 17 00:00:00 2001 From: Andrew Duthie Date: Tue, 16 Apr 2019 14:37:27 +0100 Subject: [PATCH 2/2] Update test/unit/jest.config.js Co-Authored-By: jorgefilipecosta --- test/unit/jest.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/jest.config.js b/test/unit/jest.config.js index 6e11ce2f703b2..0650c896a20ff 100644 --- a/test/unit/jest.config.js +++ b/test/unit/jest.config.js @@ -19,7 +19,7 @@ module.exports = { ], testURL: 'http://localhost', testPathIgnorePatterns: [ - '/.git/', + '/\.git/', '/node_modules/', '/packages/e2e-tests', '/.*/build/',