Commit 94f0b983 authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #53 from yann300/browserTests

fix bash
parents d4226f09 6a4cde43
...@@ -3,7 +3,7 @@ node_js: ...@@ -3,7 +3,7 @@ node_js:
- stable - stable
script: script:
- npm run test - npm run test
- bash ci/browser_tests.sh - ./ci/browser_tests.sh
deploy: deploy:
provider: script provider: script
script: ci/deploy_from_travis.sh script: ci/deploy_from_travis.sh
......
#!/bin/bash #!/usr/bin/env bash
SAUCECONNECT_URL="http://saucelabs.com/downloads/sc-4.3.16-linux.tar.gz" SAUCECONNECT_URL="https://saucelabs.com/downloads/sc-4.3.16-linux.tar.gz"
SAUCECONNECT_USERNAME="yann300" SAUCECONNECT_USERNAME="yann300"
SAUCECONNECT_ACCESSKEY="e6f430f2-daa0-48bb-90fd-8bee20f429eb" SAUCECONNECT_ACCESSKEY="e6f430f2-daa0-48bb-90fd-8bee20f429eb"
SAUCECONNECT_JOBIDENTIFIER="remix_tests_${TRAVIS_JOB_NUMBER}" SAUCECONNECT_JOBIDENTIFIER="remix_tests_${TRAVIS_JOB_NUMBER}"
...@@ -18,22 +18,10 @@ while [ ! -f $SAUCECONNECT_READYFILE ]; do ...@@ -18,22 +18,10 @@ while [ ! -f $SAUCECONNECT_READYFILE ]; do
sleep .5 sleep .5
done done
function updateTestExitCode() { npm run nightwatch_remote_firefox || TEST_EXITCODE=1
if [ $? -eq 1 ] npm run nightwatch_remote_chrome || TEST_EXITCODE=1
then npm run nightwatch_remote_safari || TEST_EXITCODE=1
TEST_EXITCODE=1 npm run nightwatch_remote_ie || TEST_EXITCODE=1
fi
}
npm run nightwatch_remote_firefox
updateTestExitCode
npm run nightwatch_remote_chrome
updateTestExitCode
npm run nightwatch_remote_safari
updateTestExitCode
npm run nightwatch_remote_ie
updateTestExitCode
node ci/sauceDisconnect.js $SAUCECONNECT_USERNAME $SAUCECONNECT_ACCESSKEY $SAUCECONNECT_JOBIDENTIFIER node ci/sauceDisconnect.js $SAUCECONNECT_USERNAME $SAUCECONNECT_ACCESSKEY $SAUCECONNECT_JOBIDENTIFIER
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment