12 lines
223 B
JavaScript
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;
|