A matcher function suitable for expect.extend() registration.
expect.extend()
This is the output of createUI5Matcher — it wraps the raw check function with pollUntilPass auto-retry and accepts an optional trailing MatcherOptions parameter.
MatcherOptions
const matcher: UI5MatcherFn = async (page, controlId, expected, options?) => { // auto-retry logic built-in}; Copy
const matcher: UI5MatcherFn = async (page, controlId, expected, options?) => { // auto-retry logic built-in};
A matcher function suitable for
expect.extend()registration.