Summary: Pull Request resolved: https://github.com/facebook/flipper/pull/3297 Reviewed By: passy Differential Revision: D33619287 fbshipit-source-id: 7e9dc595c999e9c8b61329f96adba6e45a1dfa50
16 lines
369 B
JavaScript
16 lines
369 B
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 = {
|
|
preset: 'ts-jest',
|
|
clearMocks: true,
|
|
coverageReporters: ['json-summary', 'lcov', 'html'],
|
|
testMatch: ['**/**.spec.(js|jsx|ts|tsx)'],
|
|
};
|