Ringtone app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

27 line
434 B

  1. describe('login', () => {
  2. beforeEach(() => {
  3. cy
  4. .visit('/api/auth/logout')
  5. })
  6. it('should log the current user in', () => {
  7. cy
  8. .visit('/api/auth/login')
  9. cy
  10. .get('input[name="email"]')
  11. .type(Cypress.env('USERNAME'))
  12. cy
  13. .get('input[name="password"]')
  14. .type(Cypress.env('PASSWORD'))
  15. cy
  16. .get('form')
  17. .submit()
  18. .wait(3000)
  19. .location('href')
  20. .should('equal', 'http://localhost:3000')
  21. })
  22. })