pull/7/head
yann300 8 years ago
parent b9e8faf4e9
commit 6a4cde43b4
  1. 2
      .travis.yml
  2. 24
      ci/browser_tests.sh

@ -3,7 +3,7 @@ node_js:
- stable
script:
- npm run test
- bash ci/browser_tests.sh
- ./ci/browser_tests.sh
deploy:
provider: script
script: ci/deploy_from_travis.sh

@ -1,7 +1,7 @@
#!/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_ACCESSKEY="e6f430f2-daa0-48bb-90fd-8bee20f429eb"
SAUCECONNECT_JOBIDENTIFIER="remix_tests_${TRAVIS_JOB_NUMBER}"
@ -18,22 +18,10 @@ while [ ! -f $SAUCECONNECT_READYFILE ]; do
sleep .5
done
function updateTestExitCode() {
if [ $? -eq 1 ]
then
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
npm run nightwatch_remote_firefox || TEST_EXITCODE=1
npm run nightwatch_remote_chrome || TEST_EXITCODE=1
npm run nightwatch_remote_safari || TEST_EXITCODE=1
npm run nightwatch_remote_ie || TEST_EXITCODE=1
node ci/sauceDisconnect.js $SAUCECONNECT_USERNAME $SAUCECONNECT_ACCESSKEY $SAUCECONNECT_JOBIDENTIFIER

Loading…
Cancel
Save