mirror of
https://github.com/google/blockly.git
synced 2026-01-09 18:10:08 +01:00
* Intentionally break Travis. * Alphabetize tests, remove orphaned test, and add fail to test that's running. * Unbreak test, disable OS X, move scripts, list compiler directory. * Test Java, break test. * Unbreak test, call compile script. * Compile main_compressed.js * Run test command using bash. * Fix path. * Exclude node modules. * Be more specific about JS files to compile. * Test failure. * Restore OSX, undo Blockly failure, remove compilation demo, add compilation test. * Delete manual test files. * Ignore downloaded/generated files. * Whitespace cleanup.
15 lines
306 B
Bash
Executable File
15 lines
306 B
Bash
Executable File
#!/bin/bash
|
|
DIR="../webdriverio-test"
|
|
FILE=selenium-server-standalone-3.0.1.jar
|
|
|
|
if [ ! -d $DIR ]; then
|
|
mkdir $DIR
|
|
fi
|
|
|
|
echo "downloading selenium jar"
|
|
|
|
if [ ! -f $DIR/$FILE ]; then
|
|
cd $DIR && curl -O http://selenium-release.storage.googleapis.com/3.0/selenium-server-standalone-3.0.1.jar
|
|
sleep 5
|
|
fi
|