import { render } from '@redwoodjs/testing' import AboutPage from './AboutPage' describe('AboutPage', () => { it('renders successfully', () => { expect(() => { render() }).not.toThrow() }) })