mirror of
https://github.com/vale981/grapher
synced 2025-03-04 09:01:40 -05:00
31 lines
No EOL
623 B
YAML
Executable file
31 lines
No EOL
623 B
YAML
Executable file
sudo: required
|
|
addons:
|
|
chrome: stable
|
|
|
|
language: node_js
|
|
|
|
node_js:
|
|
- "8.9.1"
|
|
|
|
before_install:
|
|
- curl https://install.meteor.com | /bin/sh
|
|
- export PATH="$HOME/.meteor:$PATH"
|
|
|
|
cache:
|
|
directories:
|
|
- ~/.npm
|
|
- "node_modules"
|
|
|
|
notifications:
|
|
email: false
|
|
|
|
before_script:
|
|
- "export DISPLAY=:99.0"
|
|
- "sh -e /etc/init.d/xvfb start"
|
|
- sleep 3
|
|
|
|
script:
|
|
- meteor create --bare test
|
|
- cd test
|
|
- meteor npm i --save selenium-webdriver@3.6.0 chromedriver@2.36.0 simpl-schema chai
|
|
- METEOR_PACKAGE_DIRS="../" TEST_BROWSER_DRIVER=chrome meteor test-packages --once --driver-package meteortesting:mocha ../ |