gpt4 book ai didi

reactjs - 测试 child 的 child 最好的方法是什么?

转载 作者:行者123 更新时间:2023-12-01 21:55:20 26 4
gpt4 key购买 nike

所以我目前正在学习如何对我的组件进行单元测试,以及我所做的工作,但我觉得这不是“正确”的方法。

在我的最后两个测试中,我正在寻找第一个 child 的第一个 child 。这感觉有点脏,但我正在努力寻找一种更好的方法来实现这一目标。

基本上我要做的是测试 svg 是否存在于该场景中——如果没有,在下一个测试中,文本是否存在。

任何帮助都会很棒!

谢谢

我的组件输出:

<h1>
<svg...> <!--(if hasIcon prop is set to true)-->
My Header Text
</h1>

我当前的测试:

let wrapper;

beforeEach(() => {
wrapper = render(<MyComponent />);
});


describe("<MyComponent />", () => {
it("should render", () => {
const { container } = wrapper;
expect(container.firstChild);
});

it("should match snapshot", () => {
const { container } = wrapper;
expect(container.firstChild).toMatchSnapshot();
});

it("should render with an icon", () => {
const { container } = wrapper;
expect(container.firstChild.firstChild.nodeName).toBe("svg");
});

it("should render without an icon", () => {
const { container } = render(<AppHeader hasIcon={false} />);
expect(container.firstChild.firstChild.nodeName).toBe("#text");
});
});

最佳答案

从我上面的评论扩展,这里有一个你可以采用的方法,因为你主要关注的是 container.firstChild.firstChild.nodeName

const Text = () => <p data-testid="text">Some text</p>;
const SVG = () => <svg data-testid="svg>Some svg</svg>;

const MyComponent = ({ text = false, svg = false }) => (
<div>
{text && <Text/>}
{svg && <SVG/>}
</div>
);

describe("<MyComponent />", () => {
it("should render", () => {
const { container } = render(<MyComponent />);
expect(container.firstChild).toBeTruthy();
});

it("should not render text or svg", () => {
const { queryByTestId } = render(<MyComponent />);
expect(queryByTestId('svg')).toBeFalsy();
expect(queryByTestId('text')).toBeFalsy();
});

it("should render with a text element", () => {
const { queryByTestId } = render(<MyComponent text={true} />);;
expect(queryByTestId('text')).toBeTruthy();
});

it("should render with a svg element", () => {
const { queryByTestId } = render(<MyComponent svg={true} />);
expect(queryByTestId('svg')).toBeTruthy();
});
});

关于reactjs - 测试 child 的 child 最好的方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58082655/

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