8 lines
152 B
JavaScript
8 lines
152 B
JavaScript
import { getConfig } from '@testing-library/dom';
|
|
|
|
function wrapEvent(cb, _element) {
|
|
return getConfig().eventWrapper(cb);
|
|
}
|
|
|
|
export { wrapEvent };
|