puppeteer/.travis.yml
Andrey Lushnikov 47a0366b16 Fix typo in coverage
This patch:
- fixes typo in coverage
- enables coverage on Travis CI

References #50.
2017-07-27 16:35:17 -07:00

22 lines
357 B
YAML

language: node_js
node_js:
- "7"
dist: trusty
addons:
apt:
packages:
# This is required to run new chrome on old trusty
- libnss3
env:
cache:
yarn: true
directories:
- node_modules
install:
- yarn install
# puppeteer's install script downloads Chrome
script:
- yarn run lint
- yarn run coverage
- yarn run test-phantom