We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
composer behat -- --help
1 parent c606e43 commit 740af0dCopy full SHA for 740af0d
1 file changed
bin/run-behat-tests
@@ -13,6 +13,12 @@ then
13
exit 1;
14
fi
15
16
+if [[ "$@" == *"--help"* ]]; then
17
+ vendor/bin/behat "$@"
18
+ ret=$?
19
+ exit $ret
20
+fi
21
+
22
# Turn WP_VERSION into an actual number to make sure our tags work correctly.
23
if [ "${WP_VERSION-latest}" = "latest" ]; then
24
export WP_VERSION=$(curl -s https://api.wordpress.org/core/version-check/1.7/ | jq -r ".offers[0].current")
0 commit comments