* Set metadata for this suite * @param {string} key * @param {string} value * @returns {this}
(key, value)
| 17 | * @returns {this} |
| 18 | */ |
| 19 | meta(key, value) { |
| 20 | this.suite.tests.forEach(test => { |
| 21 | test.meta[key] = value |
| 22 | }) |
| 23 | return this |
| 24 | } |
| 25 | |
| 26 | /** |
| 27 | * Retry this test for number of times |