react-testing-library version: 9.2.0react version: 16.8.1node version: 11.6.0npm (or yarn) version: 6.9.0it("should render the component", async () => {
const { debug, getByTestId } = render(
<Component
navigate={() => {}}
location={{ search: "" }}
setError={() => {}}
setException={() => {}}
/>
);
await wait();
debug();
});
I'm just testing a component and doing a debug of the component
The debug that was printed was just half of what I was expecting.

The Debug is not printing the entire component, I think it is probably something related to the terminal.
Output is truncated
https://testing-library.com/docs/dom-testing-library/api-helpers#debugging
Set the env var DEBUG_PRINT_LIMIT to increase the limit
Thanks mate!
It should ideally be an option of the debug() command instead. For googlers: the limit is in number of chars, not lines, the default is 7000. So you may need smth like "20000" for instance
Wow it took me so long to realize that my output was getting truncated... I was very confused as to why my component wasn't rendering properly. and now that i've realized it I agree with @eric-burel that this should be an option of debug().
I would argue that the default should be extremely high (or set to infinity) as setting an env var to increase this is strange and not intuitive. At least an optional param as @eric-burel mentions would be a big step forward.
So as I was looking over this again, I realized that debug() is built on top of prettyDom and DOES have optional parameters including one for maxLength.
So if you do screen.debug(null, 20000) then it will print as expected, based on the documentation of that function.
Most helpful comment
It should ideally be an option of the
debug()command instead. For googlers: the limit is in number of chars, not lines, the default is 7000. So you may need smth like "20000" for instance