Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Enable indent linting via ESLint (#6936) | Whymarrh Whitby | 2019-08-01 | 7 | -128/+128 |
| | | | | | | * Enable indent linting via ESLint * yarn run lint:fix | ||||
* | Remove `seedWords` completely from metamask state (#6920) | Mark Stacey | 2019-07-26 | 2 | -47/+0 |
| | | | | | | | | | | | | | | | | `seedWords` used to be stored on the metamask state temporarily at certain points. This hasn't been the case since #5994, but references to this state remained. All of the logic remained for correctly updating these `seedWords`, handling them during navigation, and scrubbing them from the state. However the state was never updated in practice. The `seedWords` are still returned by `verifySeedPhrase`, and they're still stored in component state in a few places. But they aren't ever set in the Redux metadata state or the Preferences controller. All references to this state have been removed, along with any logic for interacting with this state. A few unused actions were removed as well. | ||||
* | Declare variables before use (#6806) | Mark Stacey | 2019-07-06 | 1 | -13/+12 |
| | | | | | | | | | | | | | | | | While working on #6805, I noticed that many variables were being used before they were declared. Technically this worked fine in practice because we were using the `transform-es2015-block-scoping` Babel plugin, which transforms `let` and `const` to `var`, which is hoisted. However, after removing that Babel transformation, many things broke. All instances of variables or classes being used before declared have been fixed. The `no-use-before-define` eslint rule has been added to catch these cases going forward. The rule is disabled for function declarations for the moment, because those are always hoisted. We could disable that too if we want to, but it's purely stylistic and would require a lot more changes. | ||||
* | Validate txParams in TransactionStateManager.addTx (#6713) | Akshit Kr Nagpal | 2019-06-29 | 1 | -0/+62 |
| | | | | | | | | * Normalize and Validate txParams in TransactionStateManager.addTx too * Added Tests * Updated normalizeAndValidateParams to return the new txParams | ||||
* | feature: integrate gaba/CurrencyRateController (#6570) | Paul Bouchon | 2019-06-01 | 2 | -80/+7 |
| | |||||
* | transactions/deps - use broken out nonce-tracker module (#6555) | Frankie | 2019-05-21 | 1 | -238/+0 |
| | |||||
* | drop transactions who's nonce is lower then the known network nonce but were ↵ | Frankie | 2019-05-16 | 1 | -5/+67 |
| | | | | | | | | | | | | | | | | | | | | | | not included in a block (#6388) * transactions/pending - check nonce against the network and mark as dropped if not included in a block * transactions/pending - unifiy "dropped" txs * transactions/pending - test - fix for new expected behavior * fix comment * transactions/pending - clean up dropped event * fix spelling Co-Authored-By: frankiebee <frankie.diamond@gmail.com> * nit fix * test/tx-pending - clarify test description | ||||
* | feature: integrate gaba/ShapeShiftController (#6569) | Paul Bouchon | 2019-05-15 | 1 | -1/+1 |
| | |||||
* | Set a default value for code in _determineTransactionCategory (#6604) | Dan J Miller | 2019-05-15 | 1 | -0/+87 |
| | | | | | | | | | | * Set a default value for code in _determineTransactionCategory * Adds e2e tests that fail when token txs without gas param are not properly handled. * Adds unit tests for _determineTransactionCategory * Base error throwing and simple gas setting in estimateTxGas on transactionCategory | ||||
* | Merge pull request #6568 from MetaMask/feature/gaba-phishing-controller | Thomas Huang | 2019-05-11 | 2 | -58/+1 |
|\ | | | | | feature: integrate gaba/PhishingController | ||||
| * | feature: integrate gaba/PhishingController | bitpshr | 2019-05-09 | 2 | -58/+1 |
| | | |||||
* | | New settings custom rpc form (#6490) | Dan J Miller | 2019-05-10 | 1 | -3/+3 |
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add networks tab to settings, with header. * Adds network list to settings network tab. * Adds form to settings networks tab and connects it to network list. * Network tab: form adding and editing working * Settings network form properly handles input errors * Add translations for settings network form * Clean up styles of settings network tab. * Add popup-view styles and behaviour to settings network tab. * Fix save button on settings network form * Adds 'Add Network' button and addMode to settings networks tab * Lint fix for settings networks tab addition * Fix navigation in settings networks tab. * Editing an rpcurl in networks tab does not create new network, just changes rpc of old * Fix layout of settings tabs other than network * Networks dropdown 'Custom Rpc' item links to networks tab in settings. * Update settings sidebar networks subheader. * Make networks tab buttons width consistent with input widths in extension view. * Fix settings screen subheader height in popup view * Fix height of add networks button in popup view * Add optional label to chainId and symbol form labels in networks setting tab * Style fixes for networks tab headers * Add ability to customize block explorer used by custom rpc * Stylistic improvements+fixes to custom rpc form. * Hide cancel button. * Highlight and show network form of provider by default. * Standardize network subheader name to 'Networks' * Update e2e tests for new settings network form * Update unit tests for new rpcPrefs prop * Extract blockexplorer url construction into method. * Fix broken styles on non-network tabs in popup mode * Fix block explorer url links for cases when provider in state has not been updated. * Fix vertical spacing of network form * Don't allow click of save button on network form if nothing has changed * Ensure add network button is shown in popup view * Lint fix for networks tab * Fix block explorer url preference setting. * Fix e2e tests for custom blockexplorer in account details modal changes. * Update integration test states to include frequentRpcList property * Fix some capitalizations in en/messages.json * Remove some console.logs added during custom rpc form work * Fix external account link text and url for modal and dropdown. * Documentation, url validation, proptype required additions and lint fixes on network tab and form. | ||||
* | Check for unused function arguments (#6583) | Whymarrh Whitby | 2019-05-09 | 7 | -21/+21 |
| | | | | | | | | | | * eslint: Check for unused function arguments * eslint: Ignore unused '_' in argument list Also allow any number of '_' e.g., '__' or '___' which is to be used sparingly * Remove and rename unused arguments | ||||
* | feature: add Goerli support (#6459) | Paul Bouchon | 2019-04-18 | 3 | -3/+17 |
| | |||||
* | Remove NoticeController (#6382) | Thomas Huang | 2019-04-02 | 1 | -92/+0 |
| | |||||
* | lint fix | kumavis | 2019-03-29 | 1 | -1/+1 |
| | |||||
* | notice-controller - make markAllNoticesRead sync | kumavis | 2019-03-29 | 1 | -1/+1 |
| | |||||
* | lib - nodeify - correctly wrap synchronous functions | kumavis | 2019-03-29 | 1 | -4/+45 |
| | |||||
* | notices - markAllNoticesRead - use async/await | kumavis | 2019-03-29 | 1 | -3/+2 |
| | |||||
* | Merge branch 'develop' into clearNotices | kumavis | 2019-03-29 | 1 | -8/+3 |
|\ | |||||
| * | Replaces the coinbase link in the deposit modal with one for wyre (#6302) | Dan J Miller | 2019-03-22 | 1 | -8/+3 |
| | | |||||
* | | Clear notices when setCompletedOnboarding is called | Thomas Huang | 2019-03-21 | 1 | -0/+26 |
|/ | |||||
* | GABA: Integrate AddressBookController (#5847) | Paul Bouchon | 2019-03-12 | 1 | -54/+0 |
| | | | | | | * gaba: integrate AddressBookController * pin gaba version and update lockfile | ||||
* | I#5956 fix2 dont overwrite existing rpc settings (#6044) | Frankie | 2019-01-30 | 1 | -0/+12 |
| | | | | | | | | | | | | | | * mm-controller - dont overwrite existing rpc settings * ui-networkDropdown - dont pass old network as chainId * add methods preferencesController.updateRpc and metamaskController.updateAndSetCustomRpc * use updateAndSetCustomRpc in settings to allow rpcs to be updated * use new rpc as nickname if no nick name has been supplied * fix update rpc method | ||||
* | Disallow loading as metamaskNetworkId (#5924) | Frankie | 2018-12-14 | 1 | -2/+11 |
| | | | | | | * transactions - throw an error if a transaction is generated while the network is loading * add tests for failing when netId is loading | ||||
* | Final gas customization fixes | Dan Miller | 2018-12-04 | 1 | -1/+1 |
| | |||||
* | Adds createSpeedUpTransaction to txController | Dan Miller | 2018-12-04 | 1 | -0/+67 |
| | |||||
* | Save recent network balances in local storage (#5843) | Dan J Miller | 2018-12-01 | 1 | -0/+137 |
| | | | | | | | | | | | | * Use selector for state.metamask.accounts in all cases. * Default to cached balance when selecting metamask accounts * Adds the cached-balances controller * Documentation and small codes fixes for #5843 Co-Authored-By: danjm <danjm.com@gmail.com> | ||||
* | Autofill gasPrice for retry attempts with either the recommended gasprice or ↵ | Frankie | 2018-11-27 | 1 | -1/+4 |
| | | | | | | | | a %10 bump (#5786) * transactions - autofill gasPrice for retry attempts with either the recomened gasprice or a %10 bump * lint | ||||
* | ESLint fixes (#5775) | Whymarrh Whitby | 2018-11-17 | 1 | -3/+3 |
| | | | | | | * eslint . --fix * Upgrade all ESLint warnings to errors | ||||
* | Tx controller now uses safe event emitter (#5769) | Frankie | 2018-11-17 | 3 | -24/+27 |
| | | | | | | | | | | | | * transactions - use safe-event-emitter over events * tests - pass a platform object on init with a noop showTransactionNotification * test - fix for tx-state-history-helper trying to reduce an empty array * deps - safe-event-emitter * lint | ||||
* | Resubmit approved transactions on new block (#5752) | Dan Finlay | 2018-11-15 | 2 | -4/+20 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add beginning of test * Resubmit approved transactions on new block May fix #4343 and related issues, where an error could leave transactions stranded in the approved state. * Remove unused test * Re-approve transactions when retrying approved * Add retry approved test * Include approved in pending tx count * Fix getPendingTxs() * Linted * Only throw hash error in submitted state * Only check submitted txs for block inclusion * Fix test expectations | ||||
* | Update Balanc3 API (#5744) | Paul Bouchon | 2018-11-14 | 1 | -9/+0 |
| | | | | | | * Update balanc3 API used in TokenRatesController * Remove demo URL and use nativeCurrency when fetching token rates | ||||
* | EIP-1102: updated implementation | bitpshr | 2018-11-06 | 1 | -2/+2 |
| | |||||
* | Update watchAsset ERC20 validation (#5653) | Esteban Miño | 2018-11-06 | 1 | -0/+26 |
| | | | | | | * update ERC20 token valodation for watchAsset * update ERC20 validation test descriptions | ||||
* | Add support for RPC endpoints with custom chain IDs (#5134) | HackyMiner | 2018-10-26 | 2 | -9/+9 |
| | |||||
* | Merge pull request #5555 from MetaMask/support-wallet-watch-asset | kumavis | 2018-10-21 | 1 | -0/+5 |
|\ | | | | | Support for prefix wallet_watchAsset | ||||
| * | add support for wallet_watchAsset | Esteban MIno | 2018-10-20 | 1 | -0/+5 |
| | | |||||
* | | specific add and remove methods for frequentRpcList (#5554) | Esteban Miño | 2018-10-20 | 1 | -0/+19 |
|/ | |||||
* | Ensure that new transactions added are using the selected address | Whymarrh Whitby | 2018-10-11 | 1 | -4/+26 |
| | |||||
* | Increase suggested gas percentile to 65 (#5359) | Dan Finlay | 2018-10-05 | 1 | -1/+1 |
| | | | | | | | | * Increase suggested gas percentile to 65 I keep submitting transactions then waiting a long time. Apparently 50th percentile isn't enough. * Update test for getGasPrice | ||||
* | Add ability to whitelist a blacklisted domain at runtime | Whymarrh Whitby | 2018-10-02 | 1 | -0/+15 |
| | |||||
* | Some Ui tests | tmashuang | 2018-09-25 | 1 | -0/+33 |
| | |||||
* | Implement latest EIP-712 protocol | bitpshr | 2018-09-14 | 1 | -1/+1 |
| | |||||
* | Default NoticeController ctor opts to empty obj | Whymarrh Whitby | 2018-09-12 | 1 | -1/+1 |
| | |||||
* | Delete ConfigManager, replacing its usages with PreferencesController | Whymarrh Whitby | 2018-09-12 | 3 | -25/+46 |
| | |||||
* | fix conflicts | Esteban MIno | 2018-08-29 | 1 | -0/+71 |
|\ | |||||
| * | Add test cases for MetaMaskController#_onKeyringControllerUpdate | Whymarrh Whitby | 2018-08-23 | 1 | -0/+71 |
| | | |||||
* | | watchAsset small changes | Esteban MIno | 2018-08-28 | 1 | -1/+1 |
| | | |||||
* | | typo watchAsset imageUrl to image | Esteban MIno | 2018-08-24 | 1 | -7/+7 |
| | | |||||
* | | Merge branch 'develop' into WatchTokenFeature | Esteban MIno | 2018-08-22 | 1 | -1/+1 |
|\| | |||||
| * | fix unit tests | brunobar79 | 2018-08-21 | 1 | -1/+1 |
| | | |||||
* | | unit tests for watchAsset | Esteban MIno | 2018-08-22 | 1 | -0/+110 |
|/ | |||||
* | Merge branch 'develop' into ledger-support | Bruno Barbieri | 2018-08-18 | 1 | -0/+62 |
|\ | |||||
| * | Restores accounts until one with a zero balance is found | Dan Matthews | 2018-08-17 | 1 | -0/+62 |
| | | |||||
| * | Remove commented out code for detect-token-test | Thomas | 2018-08-15 | 1 | -10/+0 |
| | | |||||
| * | Merge branch 'develop' into network-remove-provider-engine | Thomas | 2018-08-15 | 2 | -16/+177 |
| |\ | | | | | | | | | | Override package-lock and fix merge conflicts | ||||
| * | | Set metamask controller network provider to localhost | Thomas Huang | 2018-07-31 | 2 | -2/+3 |
| | | | |||||
| * | | Detect Tokens are weird | Thomas | 2018-07-30 | 1 | -26/+31 |
| | | | |||||
| * | | Merge branch 'develop' into network-remove-provider-engine | Thomas | 2018-07-26 | 5 | -6/+348 |
| |\ \ | |||||
| * | | | test - unit - remove tests for obsolete methods | kumavis | 2018-07-04 | 1 | -52/+0 |
| | | | | |||||
| * | | | Merge branch 'develop' of github.com:MetaMask/metamask-extension into ↵ | kumavis | 2018-07-04 | 16 | -160/+189 |
| |\ \ \ | | | | | | | | | | | | | | | | network-remove-provider-engine | ||||
| * \ \ \ | Merge branch 'develop' of github.com:MetaMask/metamask-extension into ↵ | kumavis | 2018-07-03 | 2 | -63/+49 |
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | network-remove-provider-engine | ||||
| * \ \ \ \ | Merge branch 'develop' of github.com:MetaMask/metamask-extension into ↵ | kumavis | 2018-06-07 | 3 | -0/+97 |
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | network-remove-provider-engine | ||||
| * \ \ \ \ \ | Merge branch 'develop' of github.com:MetaMask/metamask-extension into ↵ | kumavis | 2018-06-07 | 1 | -1/+26 |
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | network-remove-provider-engine | ||||
| * | | | | | | | test - unit - tx-controller - fix blockTracker stub | kumavis | 2018-05-29 | 1 | -0/+1 |
| | | | | | | | | |||||
| * | | | | | | | test - unit - pending-tx-tracker - update method name | kumavis | 2018-05-29 | 1 | -2/+2 |
| | | | | | | | | |||||
| * | | | | | | | test - unit - nonce-tracker - fix blockTracker stub | kumavis | 2018-05-29 | 1 | -0/+1 |
| | | | | | | | | |||||
| * | | | | | | | controllers - transactions - merge @frankiebee's work with mine | kumavis | 2018-05-29 | 2 | -56/+7 |
| | | | | | | | | |||||
| * | | | | | | | test - unit - metamask-controller - remove log | kumavis | 2018-05-26 | 1 | -1/+0 |
| | | | | | | | | |||||
| * | | | | | | | test - unit - code style nitpick | kumavis | 2018-05-25 | 1 | -1/+2 |
| | | | | | | | | |||||
| * | | | | | | | test - unit - metamask-controller - fix many bugs in tests | kumavis | 2018-05-25 | 1 | -33/+45 |
| | | | | | | | | |||||
| * | | | | | | | test - unit - tx-controller-test - add history object to txMeta when using ↵ | kumavis | 2018-05-25 | 1 | -31/+29 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | internal calls | ||||
| * | | | | | | | test - unit - move fetch polyfill to helper | kumavis | 2018-05-25 | 1 | -3/+0 |
| | | | | | | | | |||||
| * | | | | | | | test - unit - metamask-controller - polyfill global.fetch | kumavis | 2018-05-25 | 1 | -2/+4 |
| | | | | | | | | |||||
| * | | | | | | | test - remove .only from unit tests | kumavis | 2018-05-25 | 1 | -1/+1 |
| | | | | | | | | |||||
| * | | | | | | | Merge branch 'network-remove-provider-engine' of ↵ | frankiebee | 2018-05-23 | 1 | -31/+20 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://github.com/MetaMask/metamask-extension into transactions-use-new-block-tracker | ||||
| * | | | | | | | Merge branch 'develop' of github.com:MetaMask/metamask-extension into ↵ | kumavis | 2018-05-23 | 2 | -8/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | network-remove-provider-engine | ||||
* | | | | | | | | fix merge conflicts | brunobar79 | 2018-08-18 | 7 | -164/+133 |
| | | | | | | | | |||||
* | | | | | | | | fixed unit tests | brunobar79 | 2018-08-15 | 1 | -5/+9 |
| | | | | | | | | |||||
* | | | | | | | | fix tx tests | brunobar79 | 2018-08-14 | 1 | -8/+18 |
| |_|_|_|_|_|/ |/| | | | | | | |||||
* | | | | | | | create tokens storage when setadresses | Esteban MIno | 2018-07-31 | 1 | -0/+25 |
| | | | | | | | |||||
* | | | | | | | unit tests for tokens per account and network | Esteban MIno | 2018-07-28 | 1 | -0/+128 |
| | | | | | | | |||||
* | | | | | | | modify tests according to tokens by network | Esteban MIno | 2018-07-27 | 2 | -18/+8 |
| |_|_|_|_|/ |/| | | | | | |||||
* | | | | | | Merge branch 'develop' into detectTokenFeature | Esteban Miño | 2018-07-21 | 4 | -6/+207 |
|\ \ \ \ \ \ | |||||
| * | | | | | | Auto-detect tokens #3034 (#4683) | Esteban Miño | 2018-07-21 | 1 | -0/+120 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * detect tokens polling * network store to detect token * tests for spec * passtest-lint * fix lint * improve tests * detect tokens through infura * detect tokens when submit password and new account selected * keyring unlocked detect and unit tests * add changelog | ||||
| * | | | | | | added tests for removeAccount | brunobar79 | 2018-07-17 | 1 | -0/+33 |
| | | | | | | | |||||
| * | | | | | | added more unit tests | brunobar79 | 2018-07-17 | 1 | -2/+55 |
| | | | | | | | |||||
| * | | | | | | added unit tests for metamaskcontroller | brunobar79 | 2018-07-17 | 1 | -0/+70 |
| | | | | | | | |||||
| * | | | | | | added test for preferences controller | brunobar79 | 2018-07-17 | 1 | -0/+25 |
| | | | | | | | |||||
| * | | | | | | test - check that #setTxStatusRejected removes transaction from history | frankiebee | 2018-07-11 | 1 | -0/+9 |
| | | | | | | | |||||
| * | | | | | | Merge branch 'develop' of https://github.com/MetaMask/metamask-extension ↵ | frankiebee | 2018-07-11 | 16 | -167/+141 |
| |\ \ \ \ \ \ | | | |_|_|_|/ | | |/| | | | | | | | | | | | into i#3896 | ||||
| * | | | | | | tests - fix cancle transaction test to better fit new behavior | frankiebee | 2018-06-27 | 2 | -13/+10 |
| | | | | | | | |||||
| * | | | | | | woops - remove .only | frankiebee | 2018-06-26 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: @jennypollack | ||||
| * | | | | | | trandsactions - remove rejected transactions from history | frankiebee | 2018-06-26 | 1 | -0/+14 |
| | |_|_|_|/ | |/| | | | | |||||
* | | | | | | fix detection on submit password | Esteban MIno | 2018-07-21 | 1 | -6/+27 |
| | | | | | | |||||
* | | | | | | keyring unlocked detect and unit tests | Esteban MIno | 2018-07-20 | 1 | -6/+32 |
| | | | | | | |||||
* | | | | | | detect tokens when submit password and new account selected | Esteban MIno | 2018-07-20 | 1 | -4/+4 |
| | | | | | | |||||
* | | | | | | detect tokens through infura | Esteban MIno | 2018-07-13 | 1 | -9/+17 |
| | | | | | | |||||
* | | | | | | improve tests | Esteban MIno | 2018-07-12 | 1 | -56/+49 |
| | | | | | | |||||
* | | | | | | fix lint | Esteban MIno | 2018-07-04 | 1 | -54/+46 |
| | | | | | | |||||
* | | | | | | Merge branch 'develop' into detectTokenFeature | Esteban MIno | 2018-07-04 | 16 | -169/+143 |
|\ \ \ \ \ \ | | |/ / / / | |/| | | | | |||||
| * | | | | | fix unit tests | brunobar79 | 2018-07-03 | 1 | -4/+3 |
| | | | | | | |||||
| * | | | | | fix tests | brunobar79 | 2018-07-03 | 2 | -6/+12 |
| | | | | | | |||||
| * | | | | | fix warning for unit tests | brunobar79 | 2018-07-03 | 11 | -65/+35 |
| | | | | | | |||||
| * | | | | | eslint --fix . | brunobar79 | 2018-07-03 | 13 | -111/+110 |
| |/ / / / | |||||
* / / / / | tests for spec | Esteban MIno | 2018-06-28 | 1 | -0/+101 |
|/ / / / | |||||
* | | | | Merge pull request #4566 from MetaMask/notice-phishing | Dan Finlay | 2018-06-15 | 1 | -46/+4 |
|\ \ \ \ | | | | | | | | | | | Push new notice on recent phishing incidents | ||||
| * | | | | notices - replace getLatestNotice with getNextNotice | kumavis | 2018-06-14 | 1 | -46/+4 |
| | |_|/ | |/| | | |||||
* | | | | Merge branch 'develop' of github.com:MetaMask/metamask-extension into ↵ | kumavis | 2018-06-14 | 3 | -5/+97 |
|\| | | | | | | | | | | | | | | | ValidateEmptyKey | ||||
| * | | | Merge pull request #4512 from MetaMask/test-metamask-no-diagnostics | Thomas Huang | 2018-06-07 | 1 | -0/+3 |
| |\ \ \ | | | | | | | | | | | test - metamask-controller - disable diagnostics | ||||
| | * | | | test - metamask-controller - disable diagnostics | kumavis | 2018-06-06 | 1 | -0/+3 |
| | | |/ | | |/| | |||||
| * | | | Merge pull request #4414 from scsaba/recipient-blacklist | kumavis | 2018-06-07 | 2 | -0/+94 |
| |\ \ \ | | |/ / | |/| | | Disallow sending to ganache default accounts on main net | ||||
| | * | | remove generating blocked accounts and use a config file instead | Csaba Solya | 2018-05-31 | 1 | -11/+10 |
| | | | | |||||
| | * | | adding tests for recipient blacklist checker | Csaba Solya | 2018-05-30 | 1 | -0/+78 |
| | | | | |||||
| | * | | adding transaction controller tests | Csaba Solya | 2018-05-30 | 1 | -0/+17 |
| | |/ | |||||
| * | | diagnostics - rewrite bug-notifier as diagnostics-reporter | kumavis | 2018-06-06 | 1 | -5/+0 |
| | | | |||||
* | | | test - unit - add assertRejects to test asyncFns | kumavis | 2018-06-14 | 1 | -5/+6 |
| | | | |||||
* | | | test - unit - import strategies - properly await async methods | kumavis | 2018-06-14 | 1 | -8/+8 |
| | | | |||||
* | | | Make account import tests much more specific | Dan Finlay | 2018-06-12 | 1 | -10/+10 |
| | | | | | | | | | | | | | | | However, they no longer seem to work. I'm unclear why this test is failing. The private key being provided should be valid. | ||||
* | | | Improve private key import tests | Dan Finlay | 2018-06-08 | 1 | -1/+25 |
| | | | |||||
* | | | Improve test formatting | Dan Finlay | 2018-06-08 | 1 | -16/+19 |
|/ / | |||||
* | | Mock notifier in test | Dan Finlay | 2018-06-05 | 1 | -0/+5 |
| | | |||||
* | | Add failing test for unknown identity entry | Dan Finlay | 2018-06-05 | 1 | -3/+28 |
|/ | |||||
* | Merge branch 'develop' into testing | tmashuang | 2018-05-22 | 1 | -30/+0 |
| | |||||
* | Merge branch 'develop' into testing | tmashuang | 2018-05-22 | 3 | -22/+139 |
| | |||||
* | Moved loose some loose test files to sub folders | tmashuang | 2018-05-21 | 27 | -0/+3499 |