diff --git a/README.md b/README.md index 629f44f8..b54c362f 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ This project is written on Golang, and it is distributed under a MIT License. ## Tested on * Linux (Ubuntu 20.04) - * macOS (Monterey, Sonoma) +* macOS (Monterey, Sonoma) * Windows (10, 11) ## Video diff --git a/docs/workflow.md b/docs/workflow.md index 55ad13df..cc8ddebb 100644 --- a/docs/workflow.md +++ b/docs/workflow.md @@ -156,6 +156,12 @@ This command shows you the following items: * `magento` or `m` Execute Magento command inside php container. For example: `madock m setup:upgrade` + + +* `mftf` Execute MFTF command inside php container. For example: `madock mftf generate:tests` + + +* `mftf:init` Init MFTF configuration. For example: `madock mftf:init` * `n98` Execute n98 command inside php container. For example: `madock n98 sys:info` diff --git a/src/cli/helper/help.go b/src/cli/helper/help.go index 0edc5972..a36079ae 100644 --- a/src/cli/helper/help.go +++ b/src/cli/helper/help.go @@ -43,6 +43,8 @@ func Help() { describeByLevel("[name of container]", "Container name. Optional. Default container: php. Example: php", 1) describeByLevel("magento", "Execute Magento command inside php container", 0) describeByLevel("m", "The short alias of `magento` command", 0) + describeByLevel("mftf", "Execute MFTF command inside php container. For example: `madock mftf generate:tests`", 0) + describeByLevel("mftf:init", "Init MFTF configuration. For example: `madock mftf:init`", 0) describeByLevel("n98", "Execute n98 command inside php container. For example: `madock n98 sys:info`", 0) describeByLevel("node", "Execute NodeJs command inside php container", 0) describeByLevel("patch:create", "Create patch. The patch can be used with the composer plugin cweagans/composer-patches", 0)