Sha256: c379e4d79414cee205168da0d8783f5b084595f89760ed6b80d1c6975f1f94d7

Contents?: true

Size: 517 Bytes

Versions: 5

Compression:

Stored size: 517 Bytes

Contents

#!/bin/bash
bait_dir=$(dirname $0)
project_dir="$bait_dir/.."
cd $project_dir

export BUNDLE_GEMFILE=./Gemfile

echo "bundling"
bundle install > /dev/null 2>&1

# The following will create screenshots and html report in report/
# It will also output to the console as usual for display in bait
SCREENSHOT_PATH=./report/ cucumber --format 'Calabash::Formatters::Html' \
  --out report/index.html \
  --format pretty --

# Objective-C projects are supported if you're using Calabash
# Available here: http://calaba.sh)

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
bait-0.5.13 examples/ios/test.sh
bait-0.5.12 examples/ios/test.sh
bait-0.5.11 examples/ios/test.sh
bait-0.5.10 examples/ios/test.sh
bait-0.5.9 examples/ios/test.sh