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