diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-02-14 18:43:28 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-14 18:43:28 +0900 |
commit | a48915d4e090378a672d780b2fbc93e1af6e082c (patch) | |
tree | 2e6a4295935577c5e0facbb3f5d569893bf28afe /.travis.yml | |
parent | 5412584a7c453d074dca6d58814e29590085ff73 (diff) | |
parent | f63920e25e80ca0e472d3514fd56e27fbc505e6f (diff) |
Merge pull request #329 from ueokande/e2e-test
End-to-End testing
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 8acb121..60cb22d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,11 +2,17 @@ language: node_js node_js: - "6" addons: - firefox: "56.0" + firefox: "58.0" before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start +cache: + directories: + - node_modules script: - npm run lint - npm test - npm run package + - npm run build + - npm run ambassador:build + - node e2e/web-server & npm run test:e2e |