From c722440f491929302c405ddf5c4347f8c9820660 Mon Sep 17 00:00:00 2001 From: Tim Roes Date: Wed, 3 Jul 2019 13:41:56 +0200 Subject: [PATCH] Fix typo in x-pack jest config (#40174) --- x-pack/dev-tools/jest/create_jest_config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/dev-tools/jest/create_jest_config.js b/x-pack/dev-tools/jest/create_jest_config.js index 7ff6b6cb8a4c..ae5737be248a 100644 --- a/x-pack/dev-tools/jest/create_jest_config.js +++ b/x-pack/dev-tools/jest/create_jest_config.js @@ -22,7 +22,7 @@ export function createJestConfig({ ], moduleNameMapper: { '^ui/(.*)': `${kibanaDirectory}/src/legacy/ui/public/$1`, - 'uiExports/(.*)': `${kibanaDirectory}/src/dev/jest/mocks/file_mocks.js`, + 'uiExports/(.*)': `${kibanaDirectory}/src/dev/jest/mocks/file_mock.js`, '^src/core/(.*)': `${kibanaDirectory}/src/core/$1`, '^plugins/watcher/models/(.*)': `${xPackKibanaDirectory}/legacy/plugins/watcher/public/models/$1`, '^plugins/([^\/.]*)(.*)': `${kibanaDirectory}/src/legacy/core_plugins/$1/public$2`,