We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4533597 + 2dd6cae commit 86d5b42Copy full SHA for 86d5b42
test/firefox.sh
@@ -61,7 +61,11 @@ pushd $TEST_ADDON_PATH
61
if [ "$1" == "--justrun" ]; then
62
echo "running firefox"
63
shift
64
- firefox -no-remote -profile "$PROFILE_DIRECTORY" "$@"
+ if [ $(uname) == Darwin ]; then
65
+ open /Applications/Firefox.app --wait-apps --new --args -no-remote -profile "$PROFILE_DIRECTORY" "$@"
66
+ else
67
+ firefox -no-remote -profile "$PROFILE_DIRECTORY" "$@"
68
+ fi
69
else
70
echo "running tests"
71
cfx test --profiledir="$PROFILE_DIRECTORY" --verbose
0 commit comments