我正在尝试使用 jest(集成测试)在基于 react-native 的应用程序中测试 apiwrapper。当我在 iOs 模拟器中运行它时,一切都运行良好,但是它不会正确运行我的笑话测试 - 我总是得到:
ReferenceError: XMLHttpRequest is not defined
当我尝试使用我的 api 包装器运行测试时,例如:
it('Login successful with correct data', () => {
let api = Api.getInstance();
return api.login("test", "testpass")
.then(result => expect(result).toEqual('login_successful'));
});
我在这里尝试测试的 api 类确实使用了 fetch api(不是 vanilla xhr)。我认为它与试图模拟某些东西的玩笑有关,但还没有找到让它工作的方法。
提前致谢。