( props, timeout = 4500 )
| 249 | * @return {Promise} |
| 250 | */ |
| 251 | export const waitForTestComponentToHaveCustomProperties = ( |
| 252 | props, |
| 253 | timeout = 4500 |
| 254 | ) => waitForElementToHaveCustomProperties(componentElement, props, timeout); |
| 255 | |
| 256 | /** |
| 257 | * The reason we need this solution instead of just using wait() is because |
no test coverage detected