importReactfrom'react';importReactDOMfrom'react-dom';importTemplateInterpolationfrom'./TemplateInterpolation';describe('template interpolation',()=>{it('renders without crashing',()=>{constdiv=document.createElement('div');ReactDOM.render(<TemplateInterpolation/>,div);});});