diff options
author | kumavis <kumavis@users.noreply.github.com> | 2018-04-06 23:49:59 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-06 23:49:59 +0800 |
commit | 054dce8d665da11fbe619a17138077b6e75c0415 (patch) | |
tree | 98e44a46bf26be84f17cd0cf28ce195086000ee5 | |
parent | 90bcf9f7d27d2a5240840a1eeb28dede9bfad7a3 (diff) | |
parent | 8ddaafd10b000b1d572ad9ef8d3af34f7fb6ae91 (diff) | |
download | tangerine-wallet-browser-054dce8d665da11fbe619a17138077b6e75c0415.tar tangerine-wallet-browser-054dce8d665da11fbe619a17138077b6e75c0415.tar.gz tangerine-wallet-browser-054dce8d665da11fbe619a17138077b6e75c0415.tar.bz2 tangerine-wallet-browser-054dce8d665da11fbe619a17138077b6e75c0415.tar.lz tangerine-wallet-browser-054dce8d665da11fbe619a17138077b6e75c0415.tar.xz tangerine-wallet-browser-054dce8d665da11fbe619a17138077b6e75c0415.tar.zst tangerine-wallet-browser-054dce8d665da11fbe619a17138077b6e75c0415.zip |
Merge pull request #3901 from MetaMask/MM-QA-Guide
Commit Metamask QA Guide
-rw-r--r-- | docs/QA_Guide.md | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/docs/QA_Guide.md b/docs/QA_Guide.md new file mode 100644 index 000000000..0b7c0e023 --- /dev/null +++ b/docs/QA_Guide.md @@ -0,0 +1,48 @@ +# QA Guide + +Steps to mark a full pass of QA complete. +* Browsers: Opera, Chrome, Firefox, Edge. +* OS: Ubuntu, Mac OSX, Windows +* Load older version of MetaMask and attempt to simulate updating the extension. +* Open Developer Console in background and popup, inspect errors. +* Watch the state logs + * Transactions (unapproved txs -> rejected/submitted -> confirmed) + * Nonces/LocalNonces +* Vault integrity + * create vault + * Log out + * Log in again + * Log out + * Restore from seed + * Create a second account + * Import a loose account (not related to HD Wallet) + * Import old existing vault seed phrase (pref with test Ether) + * Download State Logs, Priv key file, seed phrase file. +* Send Ether + * by address + * by ens name +* Web3 API Stability + * Create a contract from a Ðapp (remix) + * Load a Ðapp that reads using events/logs (ENS) + * Connect to MEW/MyCypto + * Send a transaction from any Ðapp + - MEW + - EtherDelta + - Leeroy + - Aragon + - (https://tmashuang.github.io/demo-dapp) + * Check account balances +* Token Management + * create a token with tokenfactory (http://tokenfactory.surge.sh/#/factory) + * Add that token to the token view + * Send that token to another metamask address. + * confirm the token arrived. +* Send a transaction and sign a message (https://danfinlay.github.io/js-eth-personal-sign-examples/) for each keyring type + * hd keyring + * imported keyring +* Change network from mainnet → ropsten → rinkeby → localhost (ganache) +* Ganache set blocktime to simulate retryTx in MetaMask +* Copy public key to clipboard +* Export private key + +* Explore changes in master, target features that have been changed and break. |