Index: bower_components/web-animations-js/.travis-run.sh |
diff --git a/bower_components/web-animations-js/.travis-run.sh b/bower_components/web-animations-js/.travis-run.sh |
deleted file mode 100755 |
index 24c204c652b34a3fa6e3cf48709b90299a2e7269..0000000000000000000000000000000000000000 |
--- a/bower_components/web-animations-js/.travis-run.sh |
+++ /dev/null |
@@ -1,29 +0,0 @@ |
-#! /bin/bash |
- |
-set -x |
- |
-if [ x$MODE == x'check' ]; then |
- SUCCESS=0 |
- |
- # Check that the testcases json file has been updated |
- echo "Checking test cases is up to date..." |
- python ./test/update-testcases.py --dry-run |
- let "SUCCESS += $?" |
- |
- # Check that the web-animations.js file passes lint checks |
- ./run-lint.sh |
- let "SUCCESS += $?" |
- |
- exit $SUCCESS |
-else |
- # For pull requests we don't have access to secure environment variables, so we just return true. |
- if [ x$BROWSER == "xRemote" -a x$SAUCE_ACCESS_KEY == x"" ]; then |
- exit 0 |
- fi |
- |
- if [ x$BROWSER == "xAndroid-Chrome" ]; then |
- echo ./run-tests-android.sh $ARGS | bash || exit 1 |
- else |
- echo ./run-tests.sh $ARGS | bash || exit 1 |
- fi |
-fi |