export default function (clickable) {
return function (obj = {}, scope = '') {
if (scope !== '') {
scope = scope + ' ';
}
return {
...obj,
...{
delete: clickable(scope + '[data-test-delete]'),
confirmDelete: clickable(scope + 'button.type-delete'),
},
};