Getting rid of the netlify widgit and rolling our own, gives us the flexibility to also add the username into the signup process as well as allow the user to opt into the newsletter at the same time. Auth is still netlify, via their "gotrue", we're just handling the more of it.
12 lines
261 B
JavaScript
12 lines
261 B
JavaScript
import { render } from '@redwoodjs/testing'
|
|
|
|
import UpdatePasswordPage from './UpdatePasswordPage'
|
|
|
|
describe('UpdatePasswordPage', () => {
|
|
it('renders successfully', () => {
|
|
expect(() => {
|
|
render(<UpdatePasswordPage />)
|
|
}).not.toThrow()
|
|
})
|
|
})
|