* Runs tests after configuration is complete. Variable args because describe * and it use (name, function) while describes uses (name, spec, function). * @param {string} name * @param {...*} args
(name, ...args)
| 134 | * @param {...*} args |
| 135 | */ |
| 136 | run(name, ...args) { |
| 137 | if (this.isSkipped()) { |
| 138 | this.runner.skip(name, ...args); |
| 139 | return; |
| 140 | } |
| 141 | this.runner(name, ...args, /* configured */ true); |
| 142 | } |
| 143 | } |
no test coverage detected