Files
nodeMap/node_modules/@testing-library/user-event/dist/cjs/setup/wrapAsync.js

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;