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