Advertisement
Guest User

Untitled

a guest
Apr 7th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. import { render as r } from '../test-utils'
  2. function render(ui, options) {
  3. const utils = r(ui, options)
  4. return {
  5. ...utils,
  6. username: utils.getByLabelText(/username/i),
  7. password: utils.getByLabelText(/password/i),
  8. login: utils.getByText(/login/i),
  9. successModal: () => utils.getByTestId('login-success')
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement