Index: bower_components/web-animations-js/run-tests-android.sh |
diff --git a/bower_components/web-animations-js/run-tests-android.sh b/bower_components/web-animations-js/run-tests-android.sh |
deleted file mode 100755 |
index e7aacea712ecd6f467276aef60196a2dbe467adb..0000000000000000000000000000000000000000 |
--- a/bower_components/web-animations-js/run-tests-android.sh |
+++ /dev/null |
@@ -1,25 +0,0 @@ |
-#! /bin/bash |
- |
-# Update git submodules |
-git submodule init |
-git submodule update |
- |
-# Set up the android environment |
-source tools/android/setup.sh |
- |
-function run_tests() { |
- ./run-tests.sh \ |
- -b Remote \ |
- --remote-executor http://localhost:9515 \ |
- --remote-caps="chromeOptions=androidPackage=$CHROME_APP" \ |
- --load-list load-list.txt \ |
- --verbose || exit 1 |
-} |
- |
-# We split the test runs into two groups to avoid running out of memory in Travis. |
-echo "^[a].*" > load-list.txt |
-run_tests |
-echo "^[^a].*" > load-list.txt |
-run_tests |
- |
-echo "Run $ANDROID_DIR/stop.sh if finished." |