From 91165d66f028125bd08e676417554be700760e82 Mon Sep 17 00:00:00 2001 From: Stefanos Togkoulidis Date: Thu, 13 Sep 2018 23:11:34 +0300 Subject: [PATCH] Ignore the mobile subfolder to run e2e Jest tests --- test/e2e/jest.config.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/e2e/jest.config.json b/test/e2e/jest.config.json index 354879e3d358a2..a40911ec90c5c7 100644 --- a/test/e2e/jest.config.json +++ b/test/e2e/jest.config.json @@ -7,5 +7,8 @@ ], "transform": { "^.+\\.jsx?$": "/node_modules/babel-jest" - } + }, + "modulePathIgnorePatterns": [ + "/gutenberg-mobile/" + ] }