mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
3eff478775
* Implements ability to defer seed phrase backup to later * Adds incremental-security.spec.js, including test dapp that sends signed tx with stand alone localhost provider * Update metamask-responsive-ui for incremental account security changes * Update backup-notification style and fix responsiveness of seed phrase screen * Remove uneeded files from send-eth-with-private-key-test/ * Apply linguist flags in .gitattributes for send-eth-with-private-key-test/ethereumjs-tx.js * Improve docs in controllers/onboarding.js * Clean up metamask-extension/test/e2e/send-eth-with-private-key-test/index.html * Remove unnecessary newlines in a couple first-time-flow/ files * Fix import of backup-notification in home.component * Fix git attrs file
52 lines
1.7 KiB
Bash
Executable File
52 lines
1.7 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -x
|
|
set -e
|
|
set -u
|
|
set -o pipefail
|
|
|
|
export PATH="$PATH:./node_modules/.bin"
|
|
export GANACHE_ARGS='--blockTime 2 --quiet'
|
|
|
|
concurrently --kill-others \
|
|
--names 'ganache,dapp,e2e' \
|
|
--prefix '[{time}][{name}]' \
|
|
--success first \
|
|
'yarn ganache:start' \
|
|
'yarn dapp' \
|
|
'sleep 5 && mocha test/e2e/metamask-ui.spec'
|
|
|
|
concurrently --kill-others \
|
|
--names 'ganache,dapp,e2e' \
|
|
--prefix '[{time}][{name}]' \
|
|
--success first \
|
|
'yarn ganache:start' \
|
|
'yarn dapp' \
|
|
'sleep 5 && mocha test/e2e/metamask-responsive-ui.spec'
|
|
|
|
export GANACHE_ARGS="$GANACHE_ARGS --deterministic --account=0x53CB0AB5226EEBF4D872113D98332C1555DC304443BEE1CF759D15798D3C55A9,25000000000000000000"
|
|
concurrently --kill-others \
|
|
--names 'ganache,e2e' \
|
|
--prefix '[{time}][{name}]' \
|
|
--success first \
|
|
'yarn ganache:start' \
|
|
'sleep 5 && mocha test/e2e/from-import-ui.spec'
|
|
|
|
|
|
export GANACHE_ARGS="$GANACHE_ARGS --deterministic --account=0x53CB0AB5226EEBF4D872113D98332C1555DC304443BEE1CF759D15798D3C55A9,25000000000000000000"
|
|
concurrently --kill-others \
|
|
--names 'ganache,e2e' \
|
|
--prefix '[{time}][{name}]' \
|
|
--success first \
|
|
'npm run ganache:start' \
|
|
'sleep 5 && mocha test/e2e/send-edit.spec'
|
|
|
|
export GANACHE_ARGS="$GANACHE_ARGS --deterministic --account=0x250F458997A364988956409A164BA4E16F0F99F916ACDD73ADCD3A1DE30CF8D1,0 --account=0x53CB0AB5226EEBF4D872113D98332C1555DC304443BEE1CF759D15798D3C55A9,25000000000000000000"
|
|
concurrently --kill-others \
|
|
--names 'ganache,sendwithprivatedapp,e2e' \
|
|
--prefix '[{time}][{name}]' \
|
|
--success first \
|
|
'npm run ganache:start' \
|
|
'npm run sendwithprivatedapp' \
|
|
'sleep 5 && mocha test/e2e/incremental-security.spec'
|