mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-06-12 12:08:07 +08:00
Reviewed By: bestander Differential Revision: D14159631 fbshipit-source-id: 62830f67060e575841cbc864dde30c7bee7e7c4c
17 lines
385 B
JavaScript
17 lines
385 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const GlobalPerformanceLogger = jest
|
|
.unmock('createPerformanceLogger')
|
|
.genMockFromModule('GlobalPerformanceLogger');
|
|
|
|
module.exports = GlobalPerformanceLogger;
|