File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ function test_standalone {
27
27
exit 1
28
28
fi
29
29
30
- if [ ! " $CIRCLECI " == " true" ]; then
30
+ if [ ! " ${IN_TRAVIS} " == " true" ]; then
31
31
echo Tearing down Selenium standalone-$BROWSER$DEBUG container
32
32
docker stop $SA_NAME
33
33
docker rm $SA_NAME
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ function test_node {
59
59
exit 1
60
60
fi
61
61
62
- if [ ! " $CIRCLECI " == " true" ]; then
62
+ if [ ! " ${IN_TRAVIS} " == " true" ]; then
63
63
echo Removing the test container
64
64
docker rm $TEST_CONTAINER
65
65
fi
@@ -72,7 +72,7 @@ if [ -z $DEBUG ]; then
72
72
test_node phantomjs $DEBUG
73
73
fi
74
74
75
- if [ ! " $CIRCLECI " == " true" ]; then
75
+ if [ ! " ${IN_TRAVIS} " == " true" ]; then
76
76
echo Tearing down Selenium Chrome Node container
77
77
docker stop $NODE_CHROME
78
78
docker rm $NODE_CHROME
You can’t perform that action at this time.
0 commit comments