After changing `render(element, container)` into `...
# react
r
After changing
render(element, container)
into
createRoot(container).render(element)
my tests failed. Had to change my synchronous tests to asynchronous to make it work again. I'm not really JS React expert but is this expected?
t
In common case different behaviour is expected
🙏 1