describe('Hello Moon', () => { const helloMoon = 'Hello, Moon!' it('says hello moon', () => { expect(helloMoon).toEqual('Hello, Moon!') }) }) // import React from 'react' // import { ListDescription } from './listdescription' // import { createTheme, render } from '../../theming' // const theme = createTheme([ListDescription]) // test('renders without crashing', (): void => { // render(, { theme }) // })