importReactfrom'react';importReactDOMfrom'react-dom';importShellEnvVariablesfrom'./ShellEnvVariables';describe('shell env variables',()=>{it('renders without crashing',()=>{constdiv=document.createElement('div');ReactDOM.render(<ShellEnvVariables/>,div);});});