()
| 114 | } |
| 115 | |
| 116 | isSkipped() { |
| 117 | for (let i = 0; i < this.skipMatchers.length; i++) { |
| 118 | if (this.skipMatchers[i].call(this)) { |
| 119 | return true; |
| 120 | } |
| 121 | } |
| 122 | for (let i = 0; i < this.ifMatchers.length; i++) { |
| 123 | if (!this.ifMatchers[i].call(this)) { |
| 124 | return true; |
| 125 | } |
| 126 | } |
| 127 | return false; |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * Runs tests after configuration is complete. Variable args because describe |