Enzyme Jest window.getSelection()不起作用

时间:2017-04-28 09:41:45

标签: reactjs testing jestjs bdd enzyme

如何解决我的情况?以下函数的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');
});

2 个答案:

答案 0 :(得分:4)

你必须删除window.getSelection().removeAllRanges()。我认为这样可行:

before(() => {
  window.getSelection = () => {
    return {
      removeAllRanges: () => {}
    };
  })
});

答案 1 :(得分:4)

2020更新

我也在为此而苦苦挣扎,@ 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