GitHub

MockAuthResetPasswordInfo

import { MockAuthResetPasswordInfo } from '@daffodil/auth/testing'

class MockAuthResetPasswordInfo implements DaffAuthResetPasswordInfo {
  email: faker.internet.email() = faker.internet.email()
  password: faker.random.alphaNumeric(16) = faker.random.alphaNumeric(16)
  token: faker.random.alphaNumeric(16) = faker.random.alphaNumeric(16)
}