aboutsummaryrefslogtreecommitdiffstats
path: root/test/integration/lib/first-time.js
Commit message (Collapse)AuthorAgeFilesLines
* Fix integration tests to accomodate new ui suggestion screen changes.Dan Miller2018-07-281-0/+5
|
* test - poll for element instead of manual timeoutskumavis2018-03-121-53/+27
|
* [NewUI] Adds the mascara first time flow to betaUI extension (#3257)Dan J Miller2018-02-161-2/+1
| | | | | | * Adds the mascara first time flow to the extension when opened in browser. * Fix tests after addition of mascara first time flow to new ui.
* Add functional integration testing to Add Token flow (#3189)Alexander Tseung2018-02-061-0/+7
|
* Revert integration to oldUiThomas2018-01-231-18/+23
|
* Update classnames for integration tests and add output/index.css to ↵Dan2017-11-031-20/+15
| | | | integration test for ci
* Fixing integraiton testChi Kei Chan2017-10-211-3/+4
|
* Revert "NetworkController refactor for new EthClient interface"kumavis2017-10-191-3/+0
|
* test - integration - intercept reload attemptskumavis2017-10-111-0/+3
|
* test - integration - bump timeoutkumavis2017-09-191-1/+1
|
* tests - mascara - increase timeout before test startskumavis2017-09-161-1/+1
|
* test - mascara - move skip reload test flagkumavis2017-09-161-1/+0
|
* tests - integration - mascara - small cleanup and timeout adjustmentskumavis2017-09-161-5/+3
|
* set time if platform is mascarafrankiebee2017-09-161-2/+4
|
* remove testem filesfrankiebee2017-09-161-1/+1
|
* dont reload on initial download and wait before passing sw to uifrankiebee2017-09-161-2/+2
|
* tests - integration - get flat and mascara tests closer to compatiblekumavis2017-09-141-9/+3
|
* tests - integration - fix bad cherry-pickkumavis2017-09-121-16/+7
|
* test - integration - drop testem for karmakumavis2017-09-121-15/+43
|
* test - integration - use async fn for error catchingkumavis2017-09-121-94/+87
|
* Fix integration test failures: ensure qr code is accessiblesdtsui2017-08-051-1/+7
|
* Modify wording to new accept.Kevin Serrano2017-06-101-1/+1
|
* continue button changed to agreeNihar2017-05-171-1/+1
|
* Integration tests play nice with new disabled buttons.Kevin Serrano2017-02-211-2/+6
|
* add waits between notices.Kevin Serrano2017-02-211-0/+13
|
* Merge branch 'mapachurro-patch-1' of github.com:mapachurro/metamask-plugin ↵Kevin Serrano2017-02-111-0/+28
|\ | | | | | | into mapachurro-patch-1
| * Update first-time.jsmapachurro2017-02-101-0/+28
| |
* | Fix integration tests.Kevin Serrano2017-02-101-18/+2
|/
* test - first-time - re-add terms header checkkumavis2017-02-021-0/+2
|
* tests - mockDev - fix first-time flowkumavis2017-02-021-20/+18
|
* Fix test to log out despite number of menu itemsDan Finlay2017-01-181-1/+2
|
* Restructured migrationDan Finlay2016-12-221-1/+1
| | | | | | | | | Migrator now returns a lostAccount array that includes objects these objects include keys of address and privateKey, this allows the MetamaskController to restore the lost accounts even without customizing the idStore or the KeyringController. Also includes a patch that allows idStore to synchronously export private keys.
* Fix vault encrypting & unlocking bugDan Finlay2016-12-011-0/+2
| | | | | | | | This is only a bug in dev, but was committed yesterday. Sometimes the `encrypt` method was being passed values other than the password as the encryption key, leading to un-unlockable vaults. To find this, and avoid it for all time hereafter, I added several more steps to our oft-neglected integration test suite, which now fully initializes a vault, locks it, and unlocks it again, to make sure all of those steps definitely work always.
* Add integration tests for logging out and back inDan Finlay2016-12-011-1/+27
|
* Add more integration testsDan Finlay2016-12-011-0/+25
| | | | | | | | Integration tests now: - Scroll through terms - Accept terms - Confirm seed phrase - Verify account detail screen
* Made integration test create a first vaultDan Finlay2016-12-011-0/+22
|
* Fix integration test suiteDan Finlay2016-11-081-11/+3
|
* Remove debugger statement.Kevin Serrano2016-10-261-1/+0
|
* Phase out extra warning screen.Kevin Serrano2016-10-261-2/+1
|
* Began adding browser-native encryptor moduleDan Finlay2016-10-131-0/+25
Added new Qunit build process that will browserify the contents of `test/integration/lib` into the QUnit browser, allowing much more modular testing, including unit testing of our modules in our target browsers. Made a basic unit test file of this form for the new encryptor module, which fails miserably because I've only just begun to work with it. I've started with this blog post as a starting point, and will be adjusting it to our needs from there: http://qnimate.com/passphrase-based-encryption-using-web-cryptography-api/