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

10 lines
202 B
JavaScript

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