aboutsummaryrefslogtreecommitdiffstats
path: root/test/integration/lib/first-time.js
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2017-02-08 10:55:26 +0800
committerGitHub <noreply@github.com>2017-02-08 10:55:26 +0800
commitc9aab2084ec7dd8b81b02c9053a8fcbb6038e0b9 (patch)
tree139d5dfad53652b50e0af07c3aec37394b3b654b /test/integration/lib/first-time.js
parentffe588365cb2dd84906613d13ad8e35b08a08dbb (diff)
parentce57957aa0fdeb79efd6ede8b6e94b8f26131dcf (diff)
downloadtangerine-wallet-browser-c9aab2084ec7dd8b81b02c9053a8fcbb6038e0b9.tar.gz
tangerine-wallet-browser-c9aab2084ec7dd8b81b02c9053a8fcbb6038e0b9.tar.zst
tangerine-wallet-browser-c9aab2084ec7dd8b81b02c9053a8fcbb6038e0b9.zip
Merge pull request #1094 from MetaMask/dev
Version 3.2.0
Diffstat (limited to 'test/integration/lib/first-time.js')
-rw-r--r--test/integration/lib/first-time.js40
1 files changed, 20 insertions, 20 deletions
diff --git a/test/integration/lib/first-time.js b/test/integration/lib/first-time.js
index 777fcbb7e..6e75eb6d7 100644
--- a/test/integration/lib/first-time.js
+++ b/test/integration/lib/first-time.js
@@ -8,49 +8,49 @@ QUnit.test('agree to terms', function (assert) {
wait().then(function() {
app = $('iframe').contents().find('#app-content .mock-app-root')
- app.find('.markdown').prop('scrollTop', 100000000)
+
+ // Scroll through terms
+ var termsHeader = app.find('h3.terms-header')[0]
+ assert.equal(termsHeader.textContent, 'MetaMask Terms & Conditions', 'Showing TOS')
+ let termsPage = app.find('.markdown')[0]
+ assert.ok(termsPage, 'on terms page')
+ termsPage.scrollTop = termsPage.scrollHeight
+
return wait()
+ }).then(function() {
+
+ // Agree to terms
+ var button = app.find('button')[0]
+ button.click()
+ return wait()
}).then(function() {
var title = app.find('h1').text()
assert.equal(title, 'MetaMask', 'title screen')
+ // enter password
var pwBox = app.find('#password-box')[0]
var confBox = app.find('#password-box-confirm')[0]
-
pwBox.value = PASSWORD
confBox.value = PASSWORD
+
return wait()
-
}).then(function() {
+ // create vault
var createButton = app.find('button.primary')[0]
createButton.click()
return wait(1500)
}).then(function() {
- var terms = app.find('h3.terms-header')[0]
- assert.equal(terms.textContent, 'MetaMask Terms & Conditions', 'Showing TOS')
-
- // Scroll through terms
- var scrollable = app.find('.markdown')[0]
- scrollable.scrollTop = scrollable.scrollHeight
-
- return wait(10)
- }).then(function() {
-
- var button = app.find('button')[0] // Agree button
- button.click()
-
- return wait(1000)
- }).then(function() {
-
var created = app.find('h3')[0]
assert.equal(created.textContent, 'Vault Created', 'Vault created screen')
- var button = app.find('button')[0] // Agree button
+ // Agree button
+ var button = app.find('button')[0]
+ assert.ok(button, 'button present')
button.click()
return wait(1000)