mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 08:15:53 +01:00
15 lines
412 B
YAML
15 lines
412 B
YAML
language: node_js
|
|
node_js:
|
|
- 0.8
|
|
|
|
before_script:
|
|
- export DISPLAY=:99.0
|
|
- sh -e /etc/init.d/xvfb start
|
|
- npm install --quiet -g karma
|
|
- ./scripts/web-server.js > /dev/null &
|
|
- sleep 1 # give server time to start
|
|
|
|
script:
|
|
- karma start config/karma.conf.js --no-auto-watch --single-run --reporters=dots --browsers=Firefox
|
|
- karma start config/karma-e2e.conf.js --reporters=dots --browsers=Firefox
|