mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 01:25:39 +00:00
390ded871c
Summary: In the upcoming Jest version `genMockFunction` and `genMockFn` are deprecated, so we need to kill them. Reviewed By: rafeca Differential Revision: D8107155 fbshipit-source-id: 4f46ab58e6e34224eb95e9355385da44f005ea94
14 lines
289 B
JavaScript
14 lines
289 B
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* 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';
|
|
|
|
module.exports.out = () => jest.fn();
|
|
module.exports.err = () => jest.fn();
|