Add missing mock for AppState
Summary: **Description** In the same vein as https://github.com/facebook/react-native/pull/11198, this adds a mock for the native module `AppState`. **Test plan** Create a component that uses `AppState`, e.g. ```jsx import React, { Component } from 'react'; import { AppState } from 'react-native'; class TestComponent extends Component { componentDidMount() { AppState.addEventListener('change', this.stateChangeListener); } } ``` Closes https://github.com/facebook/react-native/pull/11199 Differential Revision: D4246668 Pulled By: cpojer fbshipit-source-id: e3a73a98963a0e152a70aba78ef3461b86da0f6c
This commit is contained in:
parent
20e99f5b93
commit
00f888a318
|
@ -70,6 +70,9 @@ const mockNativeModules = {
|
|||
AlertManager: {
|
||||
alertWithArgs: jest.fn(),
|
||||
},
|
||||
AppState: {
|
||||
addEventListener: jest.fn(),
|
||||
},
|
||||
AsyncLocalStorage: {
|
||||
clear: jest.fn(),
|
||||
getItem: jest.fn(),
|
||||
|
|
Loading…
Reference in New Issue