(callback, errorMessage)
| 80 | * @return {!Promise} |
| 81 | */ |
| 82 | export function waitFor(callback, errorMessage) { |
| 83 | return poll( |
| 84 | errorMessage, |
| 85 | callback, |
| 86 | undefined /* opt_onError */, |
| 87 | 200 /* opt_timeout */ |
| 88 | ); |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | * Gets the initial values of an Element's animation state. |
no test coverage detected