Skip to content

Instantly share code, notes, and snippets.

@ernestofreyreg
Created August 10, 2021 15:29
Show Gist options
  • Save ernestofreyreg/fad9836cea59b76c8f7e993d1c56de27 to your computer and use it in GitHub Desktop.
Save ernestofreyreg/fad9836cea59b76c8f7e993d1c56de27 to your computer and use it in GitHub Desktop.
import { isValidEmail } from 'lib/email'
describe('isValidEmail', () => {
it('valid email', () => {
expect(isValidEmail('[email protected]')).toBe(true)
})
it('invalid email', () => {
expect(isValidEmail('johndoegmail.com')).toBe(false)
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment