mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
476e422714
The `ganache.js` helper module uses `ganache-core` to start `ganache` instead of `ganache-cli`, and allows all of the same customization. Using `ganache` programmatically from our e2e tests is much faster, as we don't have to wait that arbitrary 5 seconds before each test as we wait for `ganache-cli` to start up.
78 lines
1.7 KiB
Bash
Executable File
78 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"
|
|
|
|
concurrently --kill-others \
|
|
--names 'dapp,e2e' \
|
|
--prefix '[{time}][{name}]' \
|
|
--success first \
|
|
'yarn dapp' \
|
|
'mocha test/e2e/metamask-ui.spec'
|
|
|
|
concurrently --kill-others \
|
|
--names 'dapp,e2e' \
|
|
--prefix '[{time}][{name}]' \
|
|
--success first \
|
|
'yarn dapp' \
|
|
'mocha test/e2e/metamask-responsive-ui.spec'
|
|
|
|
concurrently --kill-others \
|
|
--names 'dapp,e2e' \
|
|
--prefix '[{time}][{name}]' \
|
|
--success first \
|
|
'yarn dapp' \
|
|
'mocha test/e2e/signature-request.spec'
|
|
|
|
concurrently --kill-others \
|
|
--names 'e2e' \
|
|
--prefix '[{time}][{name}]' \
|
|
--success first \
|
|
'mocha test/e2e/from-import-ui.spec'
|
|
|
|
concurrently --kill-others \
|
|
--names 'e2e' \
|
|
--prefix '[{time}][{name}]' \
|
|
--success first \
|
|
'mocha test/e2e/send-edit.spec'
|
|
|
|
concurrently --kill-others \
|
|
--names 'dapp,e2e' \
|
|
--prefix '[{time}][{name}]' \
|
|
--success first \
|
|
'yarn dapp' \
|
|
'mocha test/e2e/ethereum-on.spec'
|
|
|
|
concurrently --kill-others \
|
|
--names 'dapp,e2e' \
|
|
--prefix '[{time}][{name}]' \
|
|
--success first \
|
|
'yarn dapp' \
|
|
'mocha test/e2e/permissions.spec'
|
|
|
|
concurrently --kill-others \
|
|
--names 'sendwithprivatedapp,e2e' \
|
|
--prefix '[{time}][{name}]' \
|
|
--success first \
|
|
'npm run sendwithprivatedapp' \
|
|
'mocha test/e2e/incremental-security.spec'
|
|
|
|
concurrently --kill-others \
|
|
--names 'dapp,e2e' \
|
|
--prefix '[{time}][{name}]' \
|
|
--success first \
|
|
'yarn dapp' \
|
|
'mocha test/e2e/address-book.spec'
|
|
|
|
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'
|