wix-style-react
Version:
12 lines (9 loc) • 359 B
JavaScript
import { baseUniDriverFactory, findByHook } from '../../test/utils/unidriver';
import { dataHooks } from './constants';
export const counterBadgeDriverFactory = (base, body) => {
return {
...baseUniDriverFactory(base),
/* Get the content of the CounterBadge */
getContent: () => findByHook(base, dataHooks.content)._prop('innerHTML'),
};
};