language: node_js
sudo: false
node_js:
- 6
env:
  global:
  - CXX=g++-4.8
  - LOG_LEVEL=error
addons:
  apt:
    sources:
    - ubuntu-toolchain-r-test
    packages:
    - g++-4.8
matrix:
  fast_finish: true
cache:
  directories:
    - bower_components
    - node_modules
install:
- npm install
before_script:
- sh -e /etc/init.d/xvfb start
script:
- npm run test-ci
