Skip to content

Commit cab6461

Browse files
committed
Add test-repeat script
Simply re-runs the chrome smoke test 50 times in a row.
1 parent fd423c1 commit cab6461

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

test-repeat.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/bash
2+
COUNTER=0
3+
4+
while [ $COUNTER -lt 50 ]; do
5+
echo The counter is $COUNTER
6+
let COUNTER=COUNTER+1
7+
docker run --rm -it --link $1:hub selenium/test:local node smoke-chrome.js
8+
done

0 commit comments

Comments
 (0)