Sebastian "Sebbie" Silbermann

Results 555 comments of Sebastian "Sebbie" Silbermann

When I opened this I didn't realize how many moving parts are involved for this. Since this already has two workarounds I'm not that motivated to spend more hours on...

Am I understanding this correctly that jest is basically telling that you shouldn't share context between tests at all? For example, with puppeteer/playwright it's commonly documented to do ```js describe.each(["chromium",...

> 1. `unknown node with tag 23`. tag 23 is "OffscreenComponent" in the latest react-reconciler repo, but I have no idea how to render something useful here. `getLazyFiber("div").return.return.tag` should do:...

I don't have more context on how the OffscreenComponent is handled internally in React. From what I could gather it's used in different scenarios. Some only available with experimental APIs....

@ljharb With ```diff diff --git a/packages/enzyme-adapter-react-17/src/ReactSeventeenAdapter.js b/packages/enzyme-adapter-react-17/src/ReactSeventeenAdapter.js index 0e69131..bb3477d 100644 --- a/packages/enzyme-adapter-react-17/src/ReactSeventeenAdapter.js +++ b/packages/enzyme-adapter-react-17/src/ReactSeventeenAdapter.js @@ -299,16 +299,7 @@ function toTree(vnode) { case FiberTags.Lazy: return childrenToTree(node.child); case FiberTags.OffscreenComponent: { - console.log(node.return.memoizedProps.children);...