Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error in useReducer reduce function is thrown instead of saved into result.error #3

Open
mischnic opened this issue Sep 9, 2020 · 0 comments

Comments

@mischnic
Copy link

mischnic commented Sep 9, 2020

import React from "preact/compat";
import { act, renderHook } from "@testing-library/preact-hooks";

// works:
// import React from "react";
// import { act, renderHook } from "@testing-library/react-hooks";

function useTest() {
  let [state, dispatch] = React.useReducer((state, action) => {
    throw new Error("X");
  });

  return {
    load() {
      dispatch();
    },
  };
}

test("test", async () => {
  let { result, waitForNextUpdate } = renderHook(() => useTest());

  act(async () => {
    result.current.load();
  });
  expect(result.error.message).toBe("X");
});

With Preact, this fails because the error is thrown.
With React, result.error is populated.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant