Files
flipper/js/js-flipper/jest.config.js
Andrey Goncharov 28e79fe4e5 Run js-flipper tests on GH (#3298)
Summary: Pull Request resolved: https://github.com/facebook/flipper/pull/3298

Reviewed By: passy

Differential Revision: D33620152

fbshipit-source-id: 3ed14dd8a4813f9e3e8b62774d6969c52348e6d1
2022-01-17 07:55:41 -08:00

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)'],
};