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