Files
2026-02-10 01:14:19 +00:00

12 lines
223 B
JavaScript

'use strict';
var dom = require('@testing-library/dom');
/**
* Wrap an internal Promise
*/ function wrapAsync(implementation) {
return dom.getConfig().asyncWrapper(implementation);
}
exports.wrapAsync = wrapAsync;