From 5b5324da3532b9a68d82880d5209f6217e009e45 Mon Sep 17 00:00:00 2001 From: Joe Haddad <timer150@gmail.com> Date: Sun, 30 Sep 2018 18:51:39 -0400 Subject: [PATCH] Do not search multiple levels deep --- fixtures/output/jest.config.js | 2 +- fixtures/smoke/jest.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fixtures/output/jest.config.js b/fixtures/output/jest.config.js index fa718fa3e..7bb36b64f 100644 --- a/fixtures/output/jest.config.js +++ b/fixtures/output/jest.config.js @@ -1,5 +1,5 @@ module.exports = { testEnvironment: 'node', - testMatch: ['**/*.test.js'], + testMatch: ['*/*.test.js'], setupTestFrameworkScriptFile: './setupOutputTests.js', }; diff --git a/fixtures/smoke/jest.config.js b/fixtures/smoke/jest.config.js index 9057ec0ea..06104fdd0 100644 --- a/fixtures/smoke/jest.config.js +++ b/fixtures/smoke/jest.config.js @@ -1,5 +1,5 @@ module.exports = { testEnvironment: 'node', - testMatch: ['**/*.test.js'], + testMatch: ['*/*.test.js'], setupTestFrameworkScriptFile: './setupSmokeTests.js', }; -- GitLab