Files
cadhub/web/src/components/LandingSection/LandingSection.test.js
Kurt Hutten 5114716ee8 issues-103 Add landing page copy
Trying to "sell" the website and the concept of code-cad
2020-11-29 13:29:56 +11:00

12 lines
245 B
JavaScript

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