Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add E2E tests for geth and ganache dev clients #3122

Merged
merged 8 commits into from
Oct 15, 2019
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ test
dist
docs
coverage
scripts
.gitignore
.editorconfig
.travis.yml
Expand Down
38 changes: 24 additions & 14 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,33 @@
services:
- xvfb
language: node_js
node_js:
- "8"
- "10"
- "11"
- "12"
env:
- CXX=g++-4.8
matrix:
include:
- node_js: 8
env: TEST=unit
- node_js: 11
env: TEST=unit
- node_js: 12
env: TEST=unit
- node_js: 10
env: TEST=unit_and_e2e
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- ubuntu-toolchain-r-test
packages:
- g++-4.8
install:
- gcc-5
- g++-5

before_install:
- if [ $TRAVIS_OS_NAME == "linux" ]; then
export CC="gcc-5";
export CXX="g++-5";
export LINK="gcc-5";
export LINKXX="g++-5";
fi
install:
- npm install
script:
- npm run-script build
- npm run-script test-coveralls
after_script:
- cd test/node && npm install && node app.js
- npm run ci

Loading