You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
2.0 KiB
98 lines
2.0 KiB
#!/usr/bin/env bash
|
|
|
|
set -x
|
|
set -e
|
|
set -u
|
|
set -o pipefail
|
|
|
|
retry () {
|
|
retry=0
|
|
limit="${METAMASK_E2E_RETRY_LIMIT:-3}"
|
|
while [[ $retry -lt $limit ]]
|
|
do
|
|
"$@" && break
|
|
retry=$(( retry + 1 ))
|
|
sleep 1
|
|
done
|
|
|
|
if [[ $retry == "$limit" ]]
|
|
then
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
export PATH="$PATH:./node_modules/.bin"
|
|
|
|
for spec in test/e2e/tests/*.spec.js
|
|
do
|
|
retry mocha --no-timeouts "${spec}"
|
|
done
|
|
|
|
retry concurrently --kill-others \
|
|
--names 'dapp,e2e' \
|
|
--prefix '[{time}][{name}]' \
|
|
--success first \
|
|
'yarn dapp' \
|
|
'mocha test/e2e/metamask-ui.spec'
|
|
|
|
retry concurrently --kill-others \
|
|
--names 'dapp,e2e' \
|
|
--prefix '[{time}][{name}]' \
|
|
--success first \
|
|
'yarn dapp' \
|
|
'mocha test/e2e/metamask-responsive-ui.spec'
|
|
|
|
retry concurrently --kill-others \
|
|
--names 'dapp,e2e' \
|
|
--prefix '[{time}][{name}]' \
|
|
--success first \
|
|
'yarn dapp' \
|
|
'mocha test/e2e/signature-request.spec'
|
|
|
|
retry concurrently --kill-others \
|
|
--names 'e2e' \
|
|
--prefix '[{time}][{name}]' \
|
|
--success first \
|
|
'mocha test/e2e/from-import-ui.spec'
|
|
|
|
retry concurrently --kill-others \
|
|
--names 'e2e' \
|
|
--prefix '[{time}][{name}]' \
|
|
--success first \
|
|
'mocha test/e2e/send-edit.spec'
|
|
|
|
retry concurrently --kill-others \
|
|
--names 'dapp,e2e' \
|
|
--prefix '[{time}][{name}]' \
|
|
--success first \
|
|
'yarn dapp' \
|
|
'mocha test/e2e/ethereum-on.spec'
|
|
|
|
retry concurrently --kill-others \
|
|
--names 'dapp,e2e' \
|
|
--prefix '[{time}][{name}]' \
|
|
--success first \
|
|
'yarn dapp' \
|
|
'mocha test/e2e/permissions.spec'
|
|
|
|
retry concurrently --kill-others \
|
|
--names 'sendwithprivatedapp,e2e' \
|
|
--prefix '[{time}][{name}]' \
|
|
--success first \
|
|
'yarn sendwithprivatedapp' \
|
|
'mocha test/e2e/incremental-security.spec'
|
|
|
|
retry concurrently --kill-others \
|
|
--names 'dapp,e2e' \
|
|
--prefix '[{time}][{name}]' \
|
|
--success first \
|
|
'yarn dapp' \
|
|
'mocha test/e2e/address-book.spec'
|
|
|
|
retry concurrently --kill-others \
|
|
--names '3box,dapp,e2e' \
|
|
--prefix '[{time}][{name}]' \
|
|
--success first \
|
|
'node test/e2e/mock-3box/server.js' \
|
|
'yarn dapp' \
|
|
'mocha test/e2e/threebox.spec'
|
|
|