从'setup.js'中找不到模块'expo-react-native-adapter'

时间:2019-06-16 05:20:19

标签: unit-testing react-native jestjs expo enzyme

当我在Expo App的react-native代码上运行测试套件时,得到以下信息:

Errorr in console

但是我不明白为什么会这样。昨天测试工作正常。

这是测试代码:

import * as React from "react";
import { shallow } from "enzyme";
import App from "../src/App";

test("should render App component correctly", () => {
  const wrapper = shallow(<App />);
  expect(wrapper).toMatchSnapshot();
});

1 个答案:

答案 0 :(得分:0)

更新Expo后我得到​​了相同的结果。只需运行npm i expo-react-native-adapter即可解决此问题。