12 lines
225 B
JavaScript
12 lines
225 B
JavaScript
import { render } from '@redwoodjs/testing'
|
|
|
|
import AboutPage from './AboutPage'
|
|
|
|
describe('AboutPage', () => {
|
|
it('renders successfully', () => {
|
|
expect(() => {
|
|
render(<AboutPage />)
|
|
}).not.toThrow()
|
|
})
|
|
})
|