如何解决我的情况?以下功能的Jest Enzyme测试返回
TypeError: window.getSelection is not a function
我的代码:
_addNewAgent () { window.getSelection().removeAllRanges(); const newAgent = generateNewAgent(); const newDataBase = this.state.agentsDatabase; newDataBase.push(newAgent); this.setState({ currentAgentProfile: newAgent,agentsDatabase: newDataBase,infodisplayContent: 'profile' }); }
我的测试:
import React from 'react'; import { mount } from 'enzyme'; import App from '../containers/App'; const result = mount( <App /> ); test('add agent',() => { const agentsList = result.state().agentsDatabase.length; result.find('#addNewAgent').simulate('click'); expect(result.state().agentsDatabase.length).toBe(agentsList + 1); expect(result.state().currentAgentProfile) .toEqual(result.state().agentsDatabase[agentsList]); expect(result.state().infodisplayContent).toBe('profile'); });
解决方法
你必须存根window.getSelection().removeAllRanges().我认为这会奏效:
before(() => { window.getSelection = () => { return { removeAllRanges: () => {} }; }) });
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。