add parts data

This commit is contained in:
Kurt Hutten
2020-10-11 19:41:48 +11:00
parent f1dc6c28e4
commit b3456860d2
34 changed files with 1146 additions and 11 deletions

View File

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