Skip to content

Commit 43c88c9

Browse files
committed
Add some output
1 parent 80fa9a5 commit 43c88c9

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

scripts/test-cloud.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/sh
22

3-
BROWSER_NAME=MicrosoftEdge mochify -C mochify.webdriver.cjs \
4-
&& BROWSER_NAME=chrome mochify -C mochify.webdriver.cjs \
5-
&& BROWSER_NAME=firefox mochify -C mochify.webdriver.cjs
3+
for browser in MicrosoftEdge chrome firefox; do
4+
echo Running tests using $browser in the Sauce Labs cloud
5+
BROWSER_NAME=$browser mochify -C mochify.webdriver.cjs
6+
done
7+

0 commit comments

Comments
 (0)