aboutsummaryrefslogtreecommitdiffstats
path: root/test/integration
Commit message (Collapse)AuthorAgeFilesLines
* Cranked up CI test suite wait duration to alleviate their nondeterminism for nowDan Finlay2016-12-081-1/+1
|
* Fix vault encrypting & unlocking bugDan Finlay2016-12-012-0/+6
| | | | | | | | 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-013-3/+25
|
* Denodeify most of KeyringControllerDan Finlay2016-11-291-3/+8
| | | | | | | | | | Mostly Fixes #893 A couple methods cache callbacks, and will require a larger refactor to fully denodeify. Specifically, our methods involving web3 requests to sign a tx, sign a message, and approve or cancel either of those. I think we should postpone those until the TxManager refactor, since it will likely handle this response caching itself.
* Fix new encryptor migration logicDan Finlay2016-11-231-0/+11
|
* Create failing test to check submitPassword in keyringController.Kevin Serrano2016-11-192-0/+67
|
* Fix integration test suiteDan Finlay2016-11-081-11/+3
|
* Fix password validation and persistence issueDan Finlay2016-11-041-0/+22
| | | | Was wiping the vault on each successful password attempt... :P
* Remove debugger statement.Kevin Serrano2016-10-261-1/+0
|
* Phase out extra warning screen.Kevin Serrano2016-10-261-2/+1
|
* Fix testsDan Finlay2016-10-211-0/+1
|
* LintedDan Finlay2016-10-151-1/+0
|
* Got basic encryptor workingDan Finlay2016-10-151-7/+24
|
* Got encrypting working, not yet decryptingDan Finlay2016-10-152-105/+13
|
* Began adding browser-native encryptor moduleDan Finlay2016-10-135-2/+144
| | | | | | | | | 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/
* Remove comments.Kevin Serrano2016-10-121-16/+0
|
* Cleanup.Kevin Serrano2016-10-121-10/+22
|
* Fix integration test.Kevin Serrano2016-10-061-8/+15
|
* Rewritten to react standards. Way easier.Kevin Serrano2016-10-051-1/+1
|
* Ui testing (#481)Dan Finlay2016-07-264-0/+54
* Add UI Testing Framework and Simple UI Test Added a Testem configuration that launches a Qunit page with an iFrame that builds and loads our mock-dev page and can interact with it and run tests on it. Wrote a simple test that accepts the terms and conditions and transitions to the next page. I am not doing any fancy redux-hooks for the async waiting, I've simply added a `tests/integration/helpers.js` file with a `wait()` function that returns a promise that should wait long enough. Long term we should hook into the app lifecycle by some means for testing, so we only wait the right amount of time, and wait long enough for slower processes to complete, but this may work for the time being, just enough to run some basic automated browser tests. * Separate UI tests from normal unit test suite * Add UI tests to CI test script * Add testem and phantom to circleCI pre-script * Fix circle pre script * Move pre scripts to dependencies key * Remove phantom from build deps * Fix testem runner page * Add promise polyfill for PhantomJS * Skip PhantomJS in testem * Run browser tests in parallel * Fix promise usage? * Correct skip usage