Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
337 views
in Technique[技术] by (71.8m points)

reactjs - How to test the value of the props of react component rendered using react testing library

<Abc> 
  <Xyz data-testid="comp-xyz" prop1={pqr}/>
</Abc>

Here if Abc is a class component and we are testing Abc using react testing library, then is there a way to test the value of prop1 ?

const {getByTestId} = render(<Abc />)

Now I grab the component Xyz using testId getByTestId("comp-xyz")

Can I get props of this component something like this ? getByTestId("comp-xyz").props() ?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

No. The idea of ??the testing-library is to encourage you to test the user's interaction with the screen. Creating tests that depend on component data, such as props and state, does not help with this type of test, because users do not interact directly with the props, but with the elements rendered through them.

Another point is that tests that depend on implementation details are fragile tests, that is, any change in the implementation, which does not change the behavior of the component, can fail its testing generating a 'false-negative'.

In this documentation link they explain it better: https://testing-library.com/docs/


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...