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