Summary: Pull Request resolved: https://github.com/facebook/flipper/pull/3298 Reviewed By: passy Differential Revision: D33620152 fbshipit-source-id: 3ed14dd8a4813f9e3e8b62774d6969c52348e6d1
16 lines
385 B
JavaScript
16 lines
385 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', 'text-summary'],
|
|
testMatch: ['**/**.spec.(js|jsx|ts|tsx)'],
|
|
};
|