mirror of
https://github.com/gwenhael-le-moine/ledgerrb.git
synced 2024-12-30 22:23:35 +01:00
15 lines
409 B
YAML
15 lines
409 B
YAML
|
language: node_js
|
||
|
node_js:
|
||
|
- 0.10
|
||
|
|
||
|
before_script:
|
||
|
- export DISPLAY=:99.0
|
||
|
- sh -e /etc/init.d/xvfb start
|
||
|
- npm start > /dev/null &
|
||
|
- npm run update-webdriver
|
||
|
- sleep 1 # give server time to start
|
||
|
|
||
|
script:
|
||
|
- node_modules/.bin/karma start test/karma.conf.js --no-auto-watch --single-run --reporters=dots --browsers=Firefox
|
||
|
- node_modules/.bin/protractor test/protractor-conf.js --browser=firefox
|