So, here is a simplified version of my code.
This is my custom hook.
export const useStep = () => {
const [step, setStep] = useState<Steps>("sending");
const changeStep = (newStep: Steps) => setStep(newStep);
return { step, changeStep };
}
This is my test file
const { result } = renderHook(() => useStep());
const { step, changeStep, resetStep } = result.current;
...
it("should change step value when `changeStep` is called", async () => {
expect(step).toBe("sending");
changeStep("verifying");
await waitFor(() => expect(step).toBe("verifying"));
})
I've already tried many things, but none of them seems to work. step
value stays as 'sending'
There is an example in the doc, see Updates.
So the correct way is:
index.ts
:index.test.ts
:Test result: