Skip to content

Commit e3ff966

Browse files
chore(scripts/test-all): remove browser choice settings
1 parent 41a90a8 commit e3ff966

File tree

1 file changed

+2
-13
lines changed

1 file changed

+2
-13
lines changed

scripts/private/test-all.sh

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,6 @@ cleanUp () {
99

1010
trap cleanUp EXIT
1111

12-
# Define reasonable set of browsers in case we are running manually from commandline
13-
if [[ -z "$BROWSERS" ]]
14-
then
15-
BROWSERS="Chrome"
16-
fi
17-
18-
if [[ -z "$BROWSERS_E2E" ]]
19-
then
20-
BROWSERS_E2E="Chrome"
21-
fi
22-
2312
ROOT_DIR=`dirname $0`/../..
2413

2514
cd $ROOT_DIR
@@ -40,7 +29,7 @@ for i in {0..12}
4029
do
4130
git checkout -f step-$i
4231

43-
node_modules/karma/bin/karma start test/karma.conf.js --single-run --browsers=$BROWSERS
44-
node_modules/.bin/protractor test/protractor-conf.js --browser=$BROWSERS_E2E
32+
node_modules/karma/bin/karma start test/karma.conf.js --single-run
33+
node_modules/.bin/protractor test/protractor-conf.js
4534

4635
done

0 commit comments

Comments
 (0)