Guest User

Untitled

a guest
Mar 20th, 2018
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. import visit from '../utils/testUrlUtil'
  2.  
  3. describe('When visiting the homepage', function () {
  4.  
  5. jasmine.DEFAULT_TIMEOUT_INTERVAL = 70000
  6.  
  7. test('Logs in and gets inside the dashboard successfully', async function () {
  8.  
  9. let page = visit('/login')
  10. .type('input[name="email"]', 'uattestjohn@testaccount.roger.ai')
  11. .type('input[name="password"]', 'rogerrocks')
  12. .click('#submit-button')
  13. .wait('#dashboard-container')
  14.  
  15. let text = await page.evaluate(() => document.body.textContent)
  16. .end()
  17.  
  18. expect(text).not.toContain('Oops! We\'re sorry, but something went wrong.')
  19.  
  20. })
  21.  
  22. })
Add Comment
Please, Sign In to add comment