对于作为道具传递的函数,reactjs组件的unittest失败

时间:2018-03-01 01:37:09

标签: reactjs chai enzyme chai-enzyme

我正在尝试为编写的简单组件编写单元测试。

这是我的组件:

const ErrorWrpper = (props) =>(
<div className={props.class} style={props.validateForm(props.inputType)?
{display: 'none'}:{}}>
<span>{props.message}</span></div>
)
 export default  ErrorWrpper;

这是我的测试:

import React from 'react';
import { expect } from '../../test_helper';
import { shallow } from 'enzyme';
import { it, describe, beforeEach } from 'mocha';
import  ErrorWrapper  from '../../../src/app/components/login/ErrorWrapper';

let errorWrapper;
describe("ErrorWrapper component unit tests", () => {
 function validateForm(test){

}
before(() => {

    errorWrapper = shallow(<ErrorWrapper class="test"  inputType="all" validateForm={this.validateForm}/>);
});


// these tests check that each className that should exist, exists
describe("className check", () => {
    it('should have className test', () => {
        expect(errorWrapper.find('test')).to.exist;
    });
})
})

现在,当我运行它时,我得到了这个:

ErrorWrapper component unit tests "before all" hook:
 TypeError: Cannot read property 'validateForm' of undefined

如您所见,我正在尝试将validateError函数作为道具提供,但我仍然收到错误。有什么想法吗?

2 个答案:

答案 0 :(得分:1)

目前尚不清楚为什么在测试组件实例化中使用this应该有效:

errorWrapper = shallow(<ErrorWrapper class="test" inputType="all" validateForm={validateForm} />);

此外,您的组件中存在拼写错误:ErrorWrpperErrorWrapper,对吧? 你也没有将它传递给message道具。

答案 1 :(得分:0)

看起来你没有在你之前的钩子中获得对this的引用。尝试使用箭头功能定义您的validateForm函数,以便它自动将其与this引用绑定,或者您需要像validateForm一样手动绑定this.validateForm.bind(this)函数。