Testing state change with hooks, How to test init state ??
describe('init value, () => { it('init value', () => { expect(setState).toHaveBeenCalledWith(0); }); });
This code doesn't pass. please help me how to check init state!!
My recommendation for testing the initial state would just be test that React.useState is called with your initial state value.
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
Where hackers, sticks, weekend warriors, pros, architects and wannabes come together
Testing state change with hooks,
How to test init state ??
describe('init value, () => {
it('init value', () => {
expect(setState).toHaveBeenCalledWith(0);
});
});
This code doesn't pass.
please help me how to check init state!!
My recommendation for testing the initial state would just be test that React.useState is called with your initial state value.