Skip to content

Commit

Permalink
make config paths more common
Browse files Browse the repository at this point in the history
  • Loading branch information
dmlemeshko committed Apr 29, 2020
1 parent 90189e4 commit 1f30b02
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions x-pack/dev-tools/jest/create_jest_config.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ export function createJestConfig({ kibanaDirectory, xPackKibanaDirectory }) {
'legacy/plugins/**/*.{js,jsx,ts,tsx}',
'legacy/server/**/*.{js,jsx,ts,tsx}',
'plugins/**/*.{js,jsx,ts,tsx}',
'!{legacy/plugins}/**/{__test__,__snapshots__,__examples__}/**/*',
'!{plugins}/**/{__test__,__snapshots__,__examples__}/**/*',
'!{legacy,plugins}/**/*.test.{js,ts,tsx}',
'!**/{__test__,__snapshots__,__examples__}/**',
'!**/*.test.{js,ts,tsx}',
'!**/node_modules/**',
'!**/flot-charts/**',
'!**/test/**',
'!**/build/**',
'!**/scripts/**',
'!/**/mocks/**',
'!**/mocks/**',
'!**/plugins/apm/e2e/**',
],
coveragePathIgnorePatterns: ['.*\\.d\\.ts'],
coverageDirectory: '<rootDir>/../target/kibana-coverage/jest',
Expand Down

0 comments on commit 1f30b02

Please sign in to comment.