* Resets all collected stats, tests, and failure reports.
()
| 31 | * Resets all collected stats, tests, and failure reports. |
| 32 | */ |
| 33 | reset() { |
| 34 | this._stats = { |
| 35 | passes: 0, |
| 36 | failures: 0, |
| 37 | tests: 0, |
| 38 | pending: 0, |
| 39 | failedHooks: 0, |
| 40 | start: null, |
| 41 | end: null, |
| 42 | duration: 0, |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * @type {CodeceptJS.Test[]} |
| 47 | * @private |
| 48 | */ |
| 49 | this._tests = [] |
| 50 | |
| 51 | /** |
| 52 | * @type {string[][]} |
| 53 | * @private |
| 54 | */ |
| 55 | this._failures = [] |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * Sets the start time to the current time. |
no outgoing calls
no test coverage detected