如何解决我的情况?以下函数的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');
});
答案 0 :(得分:4)
你必须删除window.getSelection().removeAllRanges()
。我认为这样可行:
before(() => {
window.getSelection = () => {
return {
removeAllRanges: () => {}
};
})
});
答案 1 :(得分:4)
我也在为此而苦苦挣扎,@ Mohammad的评论为我指明了正确的方向,因此我决定在此处添加此内容作为帮助他人的答案:
正如@Mohammad所提到的,jsdom
现在是支持getSelection
的版本16。但是,Jest@25
仍在使用jsdom
的旧版本,因此您可以使用此NPM软件包来“绕过”:
https://www.npmjs.com/package/jest-environment-jsdom-sixteen
安装后,只需更新您的Jest
配置以使用此配置:
{
"testEnvironment": "jest-environment-jsdom-sixteen"
}
或者,将其用作NPM命令中的直接标志:
npm run test --env=jsdom-sixteen