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