79 lines
2.5 KiB
JavaScript
79 lines
2.5 KiB
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
/** @type import('@jest/types').Config.InitialOptions */
|
|
module.exports = {
|
|
collectCoverageFrom: [
|
|
'**/packages/*/**/*.js',
|
|
'**/packages/*/**/*.ts',
|
|
'!**/bin/**',
|
|
'!**/cli/**',
|
|
'!**/perf/**',
|
|
'!**/__mocks__/**',
|
|
'!**/__tests__/**',
|
|
'!**/build/**',
|
|
'!**/vendor/**',
|
|
'!e2e/**',
|
|
],
|
|
modulePathIgnorePatterns: [
|
|
'examples/.*',
|
|
'packages/.*/build',
|
|
'packages/.*/tsconfig.*',
|
|
'packages/jest-runtime/src/__tests__/test_root.*',
|
|
'website/.*',
|
|
'e2e/runtime-internal-module-registry/__mocks__',
|
|
],
|
|
projects: ['<rootDir>', '<rootDir>/examples/*/'],
|
|
setupFilesAfterEnv: ['<rootDir>/testSetupFile.js'],
|
|
snapshotFormat: {
|
|
escapeString: false,
|
|
},
|
|
snapshotSerializers: [
|
|
// change to require.resolve('pretty-format/ConvertAnsi') when we drop Node 10
|
|
'<rootDir>/packages/pretty-format/build/plugins/ConvertAnsi.js',
|
|
],
|
|
testPathIgnorePatterns: [
|
|
'/__arbitraries__/',
|
|
'/__typetests__/',
|
|
'/node_modules/',
|
|
'/examples/',
|
|
'/e2e/.*/__tests__',
|
|
'/e2e/global-setup',
|
|
'/e2e/global-teardown',
|
|
'\\.snap$',
|
|
'/packages/.*/build',
|
|
'/packages/.*/src/__tests__/setPrettyPrint.ts',
|
|
'/packages/jest-core/src/__tests__/test_root',
|
|
'/packages/jest-core/src/__tests__/__fixtures__/',
|
|
'/packages/jest-cli/src/init/__tests__/fixtures/',
|
|
'/packages/jest-haste-map/src/__tests__/haste_impl.js',
|
|
'/packages/jest-haste-map/src/__tests__/dependencyExtractor.js',
|
|
'/packages/jest-haste-map/src/__tests__/test_dotfiles_root/',
|
|
'/packages/jest-repl/src/__tests__/test_root',
|
|
'/packages/jest-resolve-dependencies/src/__tests__/__fixtures__/',
|
|
'/packages/jest-runtime/src/__tests__/defaultResolver.js',
|
|
'/packages/jest-runtime/src/__tests__/module_dir/',
|
|
'/packages/jest-runtime/src/__tests__/NODE_PATH_dir',
|
|
'/packages/jest-snapshot/src/__tests__/plugins',
|
|
'/packages/jest-snapshot/src/__tests__/fixtures/',
|
|
'/packages/jest-validate/src/__tests__/fixtures/',
|
|
'/packages/jest-worker/src/__performance_tests__',
|
|
'/packages/pretty-format/perf/test.js',
|
|
'/e2e/__tests__/iterator-to-null-test.ts',
|
|
],
|
|
transform: {
|
|
'\\.[jt]sx?$': '<rootDir>/packages/babel-jest',
|
|
},
|
|
watchPathIgnorePatterns: ['coverage'],
|
|
watchPlugins: [
|
|
'jest-watch-typeahead/filename',
|
|
'jest-watch-typeahead/testname',
|
|
],
|
|
};
|