add component

This commit is contained in:
Kurt Hutten
2020-10-10 12:23:57 +11:00
parent 1a8bea1b85
commit 78cb17baa4
5 changed files with 40 additions and 13 deletions

View File

@@ -0,0 +1,11 @@
import { render } from '@redwoodjs/testing'
import BlogPost from './BlogPost'
describe('BlogPost', () => {
it('renders successfully', () => {
expect(() => {
render(<BlogPost />)
}).not.toThrow()
})
})