JS单元测试-使用JEST

时间:2018-12-18 16:25:07

标签: javascript unit-testing jestjs

入门级-单元测试

这是功能

location.key

可以通过运行以下单元测试代码来确定该功能是否正确:

componentDidUpdate (prevProps) {
    if (prevProps.location.key !== this.props.location.key) {
        this.setState({
            isFormSubmitted: false,
        })
    }
}

现在如何添加不同的方案并使以下功能通过/失败 谢谢

0 个答案:

没有答案