Skip to content

Commit

Permalink
chore(scripts/test-all): remove browser choice settings
Browse files Browse the repository at this point in the history
  • Loading branch information
petebacondarwin committed Jun 29, 2015
1 parent 41a90a8 commit e3ff966
Showing 1 changed file with 2 additions and 13 deletions.
15 changes: 2 additions & 13 deletions scripts/private/test-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,6 @@ cleanUp () {

trap cleanUp EXIT

# Define reasonable set of browsers in case we are running manually from commandline
if [[ -z "$BROWSERS" ]]
then
BROWSERS="Chrome"
fi

if [[ -z "$BROWSERS_E2E" ]]
then
BROWSERS_E2E="Chrome"
fi

ROOT_DIR=`dirname $0`/../..

cd $ROOT_DIR
Expand All @@ -40,7 +29,7 @@ for i in {0..12}
do
git checkout -f step-$i

node_modules/karma/bin/karma start test/karma.conf.js --single-run --browsers=$BROWSERS
node_modules/.bin/protractor test/protractor-conf.js --browser=$BROWSERS_E2E
node_modules/karma/bin/karma start test/karma.conf.js --single-run
node_modules/.bin/protractor test/protractor-conf.js

done

0 comments on commit e3ff966

Please sign in to comment.