Sha256: 15ef26880c3d740fe3ce6172f08a69a41e8a0d42765fe288f03560f2f513fd6b
Contents?: true
Size: 669 Bytes
Versions: 4
Compression:
Stored size: 669 Bytes
Contents
#!/bin/bash TEST_SERVER_PORT=34777 MOBILE_APP_PACKAGE=$1 if [ -z "$MOBILE_APP_PACKAGE" ]; then echo 'The parameter about your mobile app package is missing: e.g. com.springsource.greenhouse.test' exit 1 else # use this line for calabash version 0.1 # adb shell am instrument -e class sh.calaba.instrumentationbackend.InstrumentationBackend -w $MOBILE_APP_PACKAGE/android.test.InstrumentationTestRunner & adb shell am instrument -e class sh.calaba.instrumentationbackend.InstrumentationBackend -w $MOBILE_APP_PACKAGE/sh.calaba.instrumentationbackend.CalabashInstrumentationTestRunner & sleep 7 IRBRC=.irbrc TEST_SERVER_PORT=$TEST_SERVER_PORT irb fi
Version data entries
4 entries across 4 versions & 1 rubygems