|
|
|
@ -56,7 +56,33 @@ QUnit.test('agree to terms', function (assert) { |
|
|
|
|
|
|
|
|
|
var detail = app.find('.account-detail-section')[0] |
|
|
|
|
assert.ok(detail, 'Account detail section loaded.') |
|
|
|
|
done() |
|
|
|
|
|
|
|
|
|
var sandwich = app.find('.sandwich-expando')[0] |
|
|
|
|
sandwich.click() |
|
|
|
|
|
|
|
|
|
return wait() |
|
|
|
|
}).then(function() { |
|
|
|
|
|
|
|
|
|
var sandwich = app.find('.menu-droppo')[0] |
|
|
|
|
var lock = sandwich.children[2] |
|
|
|
|
assert.ok(lock, 'Lock menu item found') |
|
|
|
|
lock.click() |
|
|
|
|
|
|
|
|
|
return wait(1000) |
|
|
|
|
}).then(function() { |
|
|
|
|
|
|
|
|
|
var pwBox = app.find('#password-box')[0] |
|
|
|
|
pwBox.value = PASSWORD |
|
|
|
|
|
|
|
|
|
var createButton = app.find('button.primary')[0] |
|
|
|
|
createButton.click() |
|
|
|
|
|
|
|
|
|
return wait(1500) |
|
|
|
|
}).then(function() { |
|
|
|
|
|
|
|
|
|
var detail = app.find('.account-detail-section')[0] |
|
|
|
|
assert.ok(detail, 'Account detail section loaded again.') |
|
|
|
|
|
|
|
|
|
done() |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|