describe('Hello Moon', () => { const helloMoon = 'Hello, Moon!' it('says hello moon', () => { expect(helloMoon).toEqual('Hello, Moon!') }) }) // import React from 'react' // import { render } from '@testing-library/react' // import { ListItem } from './listitem' // test('renders without crashing', (): void => { // render() // })