如何模拟反应原生I18nManager

问题描述 投票:2回答:1

我试图在本机中运行jest案例。我正在使用react-native-router-flux进行导航。我的测试用例因此错误而失败

Test suite failed to run

    TypeError: Cannot read property 'isRTL' of undefined

      at Object.<anonymous> (node_modules/react-native-router-flux/dist/NavBar.js:286:44)
      at Object.<anonymous> (node_modules/react-native-router-flux/dist/navigationStore.js:7:13)
      at Object.<anonymous> (node_modules/react-native-router-flux/dist/Reducer.js:74:36)

确切的线是transform:[{scaleX:_reactNative.I18nManager.isRTL?-1:1}]})

我尝试了不同的方法来模拟,但无法得到它

一种方法是

import {I18nManager} from 'react-native'

I18nManager = {
    isRTL : false
}

我把这个片段放在jest初始配置文件中,但是我得到了像I18nManager is readonly这样的错误

react-native mocking jestjs react-native-router-flux
1个回答
0
投票

实际上我使用的是运行的显式模块工厂,而不是使用Jest的自动锁定功能,即react-native-mock-render

像这样

jest.mock('react-native', () => require('react-native-mock-render'), {
  virtual: true
})

当我浏览这个lib代码时,我无法在模拟中找到I18nManager。所以我分叉了那个repo并自己添加了I18nManager文件。

© www.soinside.com 2019 - 2024. All rights reserved.