diff options
author | kumavis <kumavis@users.noreply.github.com> | 2017-08-08 01:51:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-08 01:51:18 +0800 |
commit | 57abc58d623b66a091987a944d8c45737f4feabe (patch) | |
tree | 546623f2e7f98dc745afe924e3937da722894820 /test/integration | |
parent | 2ba5737728d2539fc3bc9015e440f37341219cdc (diff) | |
parent | 50fc9c965842f023180630267ecd8dc4f47e9cd6 (diff) | |
download | tangerine-wallet-browser-57abc58d623b66a091987a944d8c45737f4feabe.tar tangerine-wallet-browser-57abc58d623b66a091987a944d8c45737f4feabe.tar.gz tangerine-wallet-browser-57abc58d623b66a091987a944d8c45737f4feabe.tar.bz2 tangerine-wallet-browser-57abc58d623b66a091987a944d8c45737f4feabe.tar.lz tangerine-wallet-browser-57abc58d623b66a091987a944d8c45737f4feabe.tar.xz tangerine-wallet-browser-57abc58d623b66a091987a944d8c45737f4feabe.tar.zst tangerine-wallet-browser-57abc58d623b66a091987a944d8c45737f4feabe.zip |
Merge pull request #1835 from MetaMask/NewUI
Begin UI Refactor with Responsiveness & New Menus
Diffstat (limited to 'test/integration')
-rw-r--r-- | test/integration/index.js | 34 | ||||
-rw-r--r-- | test/integration/lib/first-time.js | 8 |
2 files changed, 22 insertions, 20 deletions
diff --git a/test/integration/index.js b/test/integration/index.js index 85f91d92b..e089fc39b 100644 --- a/test/integration/index.js +++ b/test/integration/index.js @@ -1,23 +1,19 @@ -var fs = require('fs') -var path = require('path') -var browserify = require('browserify') -var tests = fs.readdirSync(path.join(__dirname, 'lib')) -var bundlePath = path.join(__dirname, 'bundle.js') +const fs = require('fs') +const path = require('path') +const browserify = require('browserify') +const tests = fs.readdirSync(path.join(__dirname, 'lib')) +const bundlePath = path.join(__dirname, 'bundle.js') -var b = browserify() +const b = browserify() -// Remove old bundle -try { - fs.unlinkSync(bundlePath) +const writeStream = fs.createWriteStream(bundlePath) - var writeStream = fs.createWriteStream(bundlePath) - - tests.forEach(function (fileName) { - b.add(path.join(__dirname, 'lib', fileName)) - }) - - b.bundle().pipe(writeStream) -} catch (e) { - console.error('Integration build failure', e) -} +tests.forEach(function (fileName) { + b.add(path.join(__dirname, 'lib', fileName)) +}) +b.bundle() +.pipe(writeStream) +.on('error', (err) => { + throw err +}) diff --git a/test/integration/lib/first-time.js b/test/integration/lib/first-time.js index 6c8cedbac..0e4b802da 100644 --- a/test/integration/lib/first-time.js +++ b/test/integration/lib/first-time.js @@ -90,7 +90,13 @@ QUnit.test('render init screen', function (assert) { return wait() }).then(function (){ - var qrButton = app.find('.fa.fa-qrcode')[0] + var qrButton = app.find('.fa.fa-ellipsis-h')[0] // open account settings dropdown + qrButton.click() + + return wait(1000) + }).then(function (){ + + var qrButton = app.find('.dropdown-menu-item')[1] // qr code item qrButton.click() return wait(1000) |