Files
flipper/desktop/jest.config.js
Andrey Goncharov 5e818edc2f Expose text report for unit test code coverage
Summary: At the request of msys

Reviewed By: lblasa

Differential Revision: D38740940

fbshipit-source-id: 25722144037ce404ef7572e9553037e7344c6955
2022-08-17 04:37:52 -07:00

35 lines
1.0 KiB
JavaScript

/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
*/
module.exports = {
transform: {
'^.*__tests__(/|\\\\).*\\.tsx?$': 'ts-jest',
'\\.(js|tsx?)$': '<rootDir>/scripts/jest-transform.js',
},
setupFiles: ['<rootDir>/scripts/jest-setup.tsx'],
setupFilesAfterEnv: ['<rootDir>/scripts/jest-setup-after.tsx'],
moduleNameMapper: {
'^flipper$': '<rootDir>/app/src',
'^flipper-plugin$': '<rootDir>/flipper-plugin/src',
'^flipper-(server-core|ui-core|frontend-core|common)$':
'<rootDir>/flipper-$1/src',
'^flipper-(pkg|pkg-lib|doctor|test-utils)$': '<rootDir>/$1/src',
},
clearMocks: true,
coverageReporters: [
'json-summary',
'lcov',
'html',
...(process.env.COVERAGE_TEXT === 'detailed' ? ['text'] : []),
],
testMatch: ['**/**.(node|spec).(js|jsx|ts|tsx)'],
testEnvironment: 'jest-environment-jsdom-sixteen',
resolver: '<rootDir>/jest.resolver.js',
};