We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0eea2e2 commit 2f5a2f0Copy full SHA for 2f5a2f0
guides/06-Debugging.md
@@ -2,7 +2,17 @@
2
3
Writing a test is always the process of learning the code and the application.
4
It is ok, if a test can't be writtng from scratch or you don't understand the effects of the code.
5
-By looking into the following debugging practices you will learn how to get all required information inside a test to finish it.
+By looking into the following debugging practices you will learn how to get all required information inside a test to finish it.
6
+
7
+## Re-Running Failed Tests
8
9
+Codeception saves the list of failed tests. To re-run failed test run tests from `failed` group:
10
11
+```php
12
+php vendor/bin/codecept run -g failed
13
+```
14
15
+If no tests have failed this group will be empty.
16
17
## Output
18
0 commit comments