gpt4 book ai didi

javascript - React-testing-library:因输入而改变

转载 作者:数据小太阳 更新时间:2023-10-29 06:04:29 24 4
gpt4 key购买 nike

我正在尝试测试组件是否会因输入元素的更改而更新。我使用 fireEvent.change() 函数,如果我随后检查我使用 getByPlaceholderText 找到的节点的值,它已按预期更新。但是我看不到 react 组件本身的变化。

这可能是因为更改直到重新渲染才会发生;我将如何测试这个? react-testing-library 的 rerender 似乎“从头开始”启动组件(即没有新的输入值),并且 waitForElement 永远找不到它在等待什么。

这是组件 TestForm.js:

import React from 'react';
import { withState } from 'recompose';

const initialInputValue = 'initialInputValue';

const TestForm = ({ inputValue, setInputValue }) => (
<>
{console.log('inputValue', inputValue)}
<input value={inputValue} onChange={(e) => setInputValue(e.target.value)} placeholder="placeholder" />
{inputValue !== initialInputValue && <div>Input has changed</div>}
</>
);

export default withState('inputValue', 'setInputValue', initialInputValue)(TestForm);

下面是测试,使用 npx jest test.js 运行:

import React from 'react';
import { cleanup, fireEvent, render, waitForElement } from 'react-testing-library';

import TestForm from './TestForm';

afterEach(cleanup);

describe('TestForm', () => {
it('Change input', async () => {
const { getByPlaceholderText, getByText } = render(<TestForm />);
const inputNode = getByPlaceholderText('placeholder');
fireEvent.change(inputNode, { target: { value: 'new value' } });
console.log('inputNode.value', inputNode.value);
await waitForElement(() => getByText('Input has changed'));
});
});

最佳答案

这段代码对我有用:

import React from "react";

const initialInputValue = "initialInputValue";

class TestForm extends React.Component {
constructor(props) {
super(props);
this.state = { inputValue: initialInputValue };
}
render() {
const { inputValue } = this.state;

return (
<div>
{console.log("inputValue", inputValue)}
<input
value={inputValue}
onChange={e => this.setState({ inputValue: e.target.value })}
placeholder="placeholder"
/>
{inputValue !== initialInputValue && <div>Input has changed</div>}
</div>
);
}
}

import { render, cleanup, fireEvent } from "react-testing-library";
import "jest-dom/extend-expect";

afterEach(cleanup);

test("form", () => {
const { getByPlaceholderText, getByText } = render(<TestForm />);
fireEvent.change(getByPlaceholderText("placeholder"), {
target: { value: "new value" }
});
expect(getByText("Input has changed")).toBeInTheDocument();
});

虽然它在 codesandbox 中不起作用,我猜他们在保持浏览器和测试环境分离方面存在一些问题。

关于javascript - React-testing-library:因输入而改变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53436344/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com