mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-23 23:59:17 +01:00
12 lines
348 B
Bash
Executable File
12 lines
348 B
Bash
Executable File
#!/bin/bash -x
|
|
|
|
echo "$TRAVIS_NODE_VERSION"
|
|
if [[ "$TRAVIS_NODE_VERSION" == "6" || "$TRAVIS_NODE_VERSION" == "7" ]]
|
|
then
|
|
npm install protractor
|
|
export DISPLAY=:99.0
|
|
bash -e /etc/init.d/xvfb start
|
|
./node_modules/protractor/bin/webdriver-manager update --standalone --firefox
|
|
./node_modules/protractor/bin/webdriver-manager start 2>&1 &
|
|
fi
|