Revision 28f0448b0c85800f154133e2805bc21b8583f9b0 authored by Eric Prud'hommeaux on 17 February 2018, 20:12:57 UTC, committed by Eric Prud'hommeaux on 17 February 2018, 20:12:57 UTC
2 parent s d72d04b + 6e7fafe
Raw File
.travis.yml
sudo: false
language: node_js
env:
  - CLI_TIMEOUT=10000
node_js:
  - "6.0"
  - "8.0"
  - "stable"
script:
  - $(npm bin)/mocha -R dot
  - TEST_cli=true $(npm bin)/mocha -R dot test/cli-test.js || true
cache:
  directories:
    - node_modules
before_script:
  - npm run browser
back to top