(e: Error)
| 100 | static pendingSpecExceptionMessage: string; |
| 101 | |
| 102 | static isPendingSpecException(e: Error) { |
| 103 | return !!( |
| 104 | e && |
| 105 | e.toString && |
| 106 | e.toString().includes(Spec.pendingSpecExceptionMessage) |
| 107 | ); |
| 108 | } |
| 109 | |
| 110 | constructor(attrs: Attributes) { |
| 111 | this.resultCallback = attrs.resultCallback || function () {}; |
no test coverage detected