| 123456789101112131415161718 |
- sudo: required
- dist: trusty
- addons:
- apt:
- sources:
- - google-chrome
- packages:
- - google-chrome-stable
- language: node_js
- node_js:
- - "6"
- before_install:
- - export DISPLAY=:99.0
- - sh -e /etc/init.d/xvfb start
- install:
- - npm install
- script:
- - npm run lint && npm test && cat ./coverage/text.txt
|