Jim Jin

Results 26 comments of Jim Jin

For the Java's static function mocking, we use powermock. But I may not fully understand the comparison. By the way, I don't like java, it's evolution is too slow. Now...

[#577 ](https://github.com/tokio-rs/axum/issues/577) So, does hyper support io_uring?

Any web framework which supports io_uring?

> > Any web framework which supports io_uring? > > Unlikely given that most frameworks are built on top of hyper. There is this [actix/actix-web#2404](https://github.com/actix/actix-web/issues/2404) but thats specifically for files...

Thanks for the quick response. Hope it could be added soon.

You can use this page to reproduce the bug: Just need to introduce one change: `onClickOutside={() => setShow(false)}` -> `onClickOutside={() => console.log('close')}`

In your sandbox, you could make a tiny small chagne to reproduce the bug: ```javascript const onClose = () => { console.log("click"); // setOpen(undefined); }; ```

Glad to know the successful reproduction. This bug is a little bit critical since we are trying [intercepting routes](https://nextjs.org/docs/app/building-your-application/routing/intercepting-routes) from [next.js](https://nextjs.org/). When intercepting routes is used, the `onClose()` function of...