Files
2026-04-09 13:19:47 -05:00

10 lines
202 B
JavaScript

import { getConfig } from '@testing-library/dom';
/**
* Wrap an internal Promise
*/ function wrapAsync(implementation) {
return getConfig().asyncWrapper(implementation);
}
export { wrapAsync };