2018-02-27 18:50:10 +02:00
|
|
|
sudo: required
|
2017-11-27 00:03:55 +02:00
|
|
|
addons:
|
2017-11-27 00:18:04 +02:00
|
|
|
chrome: stable
|
2017-11-27 02:01:00 +02:00
|
|
|
|
2016-09-15 09:14:15 +03:00
|
|
|
language: node_js
|
2017-11-27 02:01:00 +02:00
|
|
|
|
2016-09-15 10:37:10 +03:00
|
|
|
node_js:
|
2017-11-26 20:19:03 +02:00
|
|
|
- "8.9.1"
|
2017-11-27 02:01:00 +02:00
|
|
|
|
2016-09-15 09:14:15 +03:00
|
|
|
before_install:
|
2018-02-27 18:50:10 +02:00
|
|
|
- curl https://install.meteor.com | /bin/sh
|
2016-09-15 09:33:48 +03:00
|
|
|
- export PATH="$HOME/.meteor:$PATH"
|
2017-11-27 02:01:00 +02:00
|
|
|
|
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- ~/.npm
|
|
|
|
- "node_modules"
|
|
|
|
|
|
|
|
notifications:
|
|
|
|
email: false
|
|
|
|
|
2017-11-27 18:25:10 +02:00
|
|
|
before_script:
|
|
|
|
- "export DISPLAY=:99.0"
|
|
|
|
- "sh -e /etc/init.d/xvfb start"
|
2018-02-27 18:50:10 +02:00
|
|
|
- sleep 3
|
2017-11-27 18:25:10 +02:00
|
|
|
|
2016-09-15 09:33:48 +03:00
|
|
|
script:
|
2017-11-27 18:12:21 +02:00
|
|
|
- meteor create --bare test
|
|
|
|
- cd test
|
2018-10-25 01:54:30 -07:00
|
|
|
- meteor npm i --save selenium-webdriver@3.6.0 chromedriver@2.36.0 simpl-schema chai
|
2018-02-27 18:50:10 +02:00
|
|
|
- METEOR_PACKAGE_DIRS="../" TEST_BROWSER_DRIVER=chrome meteor test-packages --once --driver-package meteortesting:mocha ../
|