issue-129 Add custom auth ui/ux

This commit is contained in:
Kurt Hutten
2020-12-03 06:55:26 +11:00
parent 8379b03537
commit fc4906757a
23 changed files with 548 additions and 26 deletions

View File

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