codecombat/.travis.yml
Scott Erickson 23e3821e24 Switch from jasmine-node to jasmine, run server tests on a single process
This collapses the difference between master and single-process-server-tests, to
remove some larger fixtures files that were in that feature branch.
2015-12-09 14:27:10 -08:00

32 lines
569 B
YAML

sudo: false
language: node_js
node_js:
- 5.1.1
addons:
apt:
sources:
- mongodb-upstart
packages:
- mongodb-org-server
cache:
directories:
- node_modules
- bower_components
before_install:
- export COCO_TRAVIS_TEST=1
- npm install -g npm@latest
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- "node index.js --unittest &"
- "sleep 10" # to give node a chance to start
script:
- "./node_modules/karma/bin/karma start --browsers Firefox --single-run --reporters progress"
- "npm run jasmine"