diff --git a/test/render.test.js b/test/render.test.js index 8e90a910..7e3dc78d 100644 --- a/test/render.test.js +++ b/test/render.test.js @@ -1271,33 +1271,6 @@ describe('render', () => { }); describe('vnode masks (useId)', () => { - it('should work with Fragments', () => { - const ids = []; - function Foo() { - const id = useId(); - ids.push(id); - return

{id}

; - } - - function Bar(props) { - return props.children; - } - - function App() { - return ( - - - - - - - ); - } - - render(); - expect(ids[0]).not.to.equal(ids[1]); - }); - it('should skip component top level Fragment child', () => { const Wrapper = ({ children }) => {children};