A Metamask fork with Infura removed and default networks editable
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.
|
|
|
machine:
|
|
|
|
node:
|
|
|
|
version: 8.1.4
|
|
|
|
test:
|
|
|
|
override:
|
|
|
|
- "npm test"
|
|
|
|
dependencies:
|
|
|
|
pre:
|
|
|
|
- sudo apt-get update
|
|
|
|
# get latest stable firefox
|
|
|
|
- sudo apt-get install firefox
|
|
|
|
- firefox_cmd=`which firefox`; sudo rm -f $firefox_cmd; sudo ln -s `which firefox.ubuntu` $firefox_cmd
|
|
|
|
# get latest stable chrome
|
|
|
|
- wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
|
|
|
|
- sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
|
|
|
|
- sudo apt-get update
|
|
|
|
- sudo apt-get install google-chrome-stable
|