1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-31 23:51:09 +03:00

lint fixes

This commit is contained in:
Daniel Sami 2019-03-04 11:56:48 -05:00
parent 0ec6d652f7
commit 38934dc8d0

View File

@ -4,14 +4,13 @@ import {
module.exports = {
before: (client) => {
client
.login()
.waitForAngular()
.resizeWindow(1200, 1000);
},
'Verify 404 page behavior': client => {
client.navigateTo(AWX_E2E_URL + '#/brokenurl', false);
client.navigateTo(`${AWX_E2E_URL}'#/brokenurl`, false);
client.useXpath().waitForElementVisible('//job-status-graph');
client.assert.urlContains('#/home');
},