I have a ponent that fetches data asynchronously in ponentDidMount()
ponentDidMount() {
const self = this;
const url = "/some/path";
const data = {}
const config = {
headers: { "Content-Type": "application/json", "Accept": "application/json" }
};
axios.get(url, data, config)
.then(function(response) {
// Do success stuff
self.setState({ .... });
})
.catch(function(error) {
// Do failure stuff
self.setState({ .... });
})
;
}
My test for the ponent looks like this -
it("renders the ponent correctly", async () => {
// Have API return some random data;
let data = { some: { random: ["data to be returned"] } };
axios.get.mockResolvedValue({ data: data });
const rendered = render(<MyComponent />);
// Not sure what I should be awaiting here
await ???
// Test that certain elements render
const toggleContainer = rendered.getByTestId("some-test-id");
expect(toggleContainer).not.toBeNull();
});
Since rendering and loading data is async, my expect()
statements go ahead and execute before ponentDidMount()
and the fake async call finish executing, so the expect()
statements always fail.
I guess I could introduce some sort of delay, but that feels wrong and of course increases my runtime of my tests.
This similar question and this gist snippet both show how I can test this with Enzyme. Essentially they rely on async
/await
to call ponentDidMount()
manually.
However react-testing-library
doesn't seem to allow direct access to the ponent to call its methods directly (probably by design). So I'm not sure "what" to wait on, or whether that's even the right approach.
Thanks!
I have a ponent that fetches data asynchronously in ponentDidMount()
ponentDidMount() {
const self = this;
const url = "/some/path";
const data = {}
const config = {
headers: { "Content-Type": "application/json", "Accept": "application/json" }
};
axios.get(url, data, config)
.then(function(response) {
// Do success stuff
self.setState({ .... });
})
.catch(function(error) {
// Do failure stuff
self.setState({ .... });
})
;
}
My test for the ponent looks like this -
it("renders the ponent correctly", async () => {
// Have API return some random data;
let data = { some: { random: ["data to be returned"] } };
axios.get.mockResolvedValue({ data: data });
const rendered = render(<MyComponent />);
// Not sure what I should be awaiting here
await ???
// Test that certain elements render
const toggleContainer = rendered.getByTestId("some-test-id");
expect(toggleContainer).not.toBeNull();
});
Since rendering and loading data is async, my expect()
statements go ahead and execute before ponentDidMount()
and the fake async call finish executing, so the expect()
statements always fail.
I guess I could introduce some sort of delay, but that feels wrong and of course increases my runtime of my tests.
This similar question and this gist snippet both show how I can test this with Enzyme. Essentially they rely on async
/await
to call ponentDidMount()
manually.
However react-testing-library
doesn't seem to allow direct access to the ponent to call its methods directly (probably by design). So I'm not sure "what" to wait on, or whether that's even the right approach.
Thanks!
Share Improve this question edited Sep 19, 2019 at 5:55 skyboyer 23.8k7 gold badges62 silver badges71 bronze badges asked Sep 19, 2019 at 3:03 abhchandabhchand 5451 gold badge6 silver badges15 bronze badges2 Answers
Reset to default 6It depends on what your ponent is doing. Imagine your ponent shows a loading message and then a wele message. You would wait for the wele message to appear:
const { getByText, findByText } = render(<MyComponent />)
expect(getByText('Loading...')).toBeInTheDocument()
expect(await findByText('Wele back!')).toBeInTheDocument()
The best way to think about it is to open the browser to look at your ponent. When do you know that it is loaded? Try to reproduce that in your test.
You need to wrap render
with act
to solve warning message causes React state updates should be wrapped into act
.
e.g:
it("renders the ponent correctly", async () => {
// Have API return some random data;
let data = { some: { random: ["data to be returned"] } };
axios.get.mockResolvedValue({ data: data });
const rendered = await act(() => render(<MyComponent />));
// Test that certain elements render
const toggleContainer = rendered.getByTestId("some-test-id");
expect(toggleContainer).not.toBeNull();
});
Also same goes for react-testing-library.