* Returns a predicate function that will suppress tests in this environment * if the plain #browser current browser is in the list of * `browsersToIgnore`. * * @param {...(string|!Browser)} browsersToIgnore the browsers that should * be ignored. * @return {function(): bo
(...browsersToIgnore)
| 286 | * @return {function(): boolean} a new predicate function. |
| 287 | */ |
| 288 | browsers(...browsersToIgnore) { |
| 289 | return () => browsersToIgnore.indexOf(this.browser.name) !== -1 |
| 290 | } |
| 291 | |
| 292 | /** |
| 293 | * @return {!Builder} a new WebDriver builder configured to target this |
no outgoing calls
no test coverage detected