issue-165 Add code of conduct

resolves #165
This commit is contained in:
Kurt Hutten
2020-12-19 17:37:04 +11:00
parent ee11f164a3
commit 96025b8e16
6 changed files with 231 additions and 1 deletions

View File

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