2015-08-31 20:44:04 -04:00
|
|
|
sudo: false
|
|
|
|
|
2014-01-27 21:28:21 -05:00
|
|
|
language: node_js
|
2015-08-31 20:44:04 -04:00
|
|
|
|
2014-01-12 14:10:36 -05:00
|
|
|
node_js:
|
|
|
|
- 0.10
|
2014-01-27 21:32:56 -05:00
|
|
|
|
2015-08-31 20:44:04 -04:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- mongodb-upstart
|
|
|
|
packages:
|
|
|
|
- mongodb-org-server
|
|
|
|
|
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- node_modules
|
|
|
|
- bower_components
|
|
|
|
|
2014-06-09 20:04:51 -04:00
|
|
|
before_install:
|
2015-10-21 23:52:16 -04:00
|
|
|
- "gem install sass"
|
2015-08-31 20:44:04 -04:00
|
|
|
- npm install -g npm@latest
|
2015-05-20 20:22:29 -04:00
|
|
|
|
2014-01-12 14:10:36 -05:00
|
|
|
before_script:
|
|
|
|
- export DISPLAY=:99.0
|
2014-12-12 14:36:41 -05:00
|
|
|
- export COCO_TRAVIS_TEST=1
|
2014-01-12 14:10:36 -05:00
|
|
|
- sh -e /etc/init.d/xvfb start
|
2014-06-09 18:07:39 -04:00
|
|
|
- "node index.js --unittest &"
|
2014-06-12 16:35:39 -04:00
|
|
|
- "sleep 10" # to give node a chance to start
|
2014-01-27 21:32:56 -05:00
|
|
|
|
2014-01-12 14:10:36 -05:00
|
|
|
script:
|
2014-06-09 18:07:39 -04:00
|
|
|
- "./node_modules/jasmine-node/bin/jasmine-node test/server/ --coffee --captureExceptions"
|
2015-08-31 20:44:04 -04:00
|
|
|
- "./node_modules/karma/bin/karma start --browsers Firefox --single-run --reporters progress"
|