You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This command runs all tests specified in a `testManifest.txt` file. When you generate tests, a `testManifest.txt` file is also generated for you. You can pass this file directly to the `run:manifest` command and it will execute all listed tests. You can also create your own file in the same format to execute a subset of tests. Note: This command does not generate tests.
82
82
83
-
### Generate and run previously failed tests
83
+
### Generate previously failed tests
84
+
85
+
```bash
86
+
vendor/bin/mftf generate:failed
87
+
```
88
+
89
+
This command cleans up the previously generated tests; generates the tests listed in `dev/tests/acceptance/tests/_output/failed`.
90
+
For more details about `failed`, refer to [Reporting][].
91
+
92
+
### Run previously failed tests
84
93
85
94
```bash
86
95
vendor/bin/mftf run:failed
87
96
```
88
97
89
-
This command cleans up the previously generated tests; generates and runs the tests listed in `dev/tests/acceptance/tests/_output/failed`.
98
+
This command runs the tests listed in `dev/tests/acceptance/tests/_output/failed`.
90
99
For more details about `failed`, refer to [Reporting][].
0 commit comments