我正在尝试使用Jest和Ezyme进行测试
Editworkflow是状态之一,它正在重定向到另一个位置。 如果我将其设置为true,则会破坏终端。
经过研究,我能够做到以下几点
describe("when user has permission", () => {
beforeEach(() => {
wrapper.setState({editWorkflow: true, selectedWorkId:true });
wrapper.instance().history.replace('/add'); // replace the MemoryRouter location with
wrapper.update(); // update the wrapper with the changes
})
it("Test click event on Workflows - Cancel/AddWork", () => {
baseProps.onClick.mockClear();
expect(wrapper.containsMatchingElement(<Redirect to="/add" />)).toEqual(true)
expect(wrapper.containsMatchingElement(<Redirect to="/edit/" />)).toEqual(true)
wrapper.find('Workflows').find('#add-work-button').at(0).simulate("click");
wrapper.find('Workflows').find('#add-work-button').at(1).simulate("click");
);
目前终端还没有损坏,但是测试也没有通过。
这是错误:
expect(received).toEqual(expected)
Expected value to equal:
true
Received:
false
expect(wrapper.containsMatchingElement(<Redirect to="/add"/>)).toEqual(true)
如果我将上面的语句设置为False,终端将再次中断
这里是国家称为“重定向”的地方
{ this.state.editWorkflow ? <Redirect push to={`${this.props.location.pathname}/add`} /> : null }
{ this.state.selectedWorkId ? <Redirect push to={`${this.props.location.pathname}/edit/${this.state.selectedWorkId}`} /> : null }
如何使用Jest和Enzyme编写以下测试并防止这种情况发生