importReactfrom'react';importReactDOMfrom'react-dom';importArrayDestructuringfrom'./ArrayDestructuring';describe('array destructuring',()=>{it('renders without crashing',()=>{constdiv=document.createElement('div');ReactDOM.render(<ArrayDestructuring/>,div);});});