UNPKG

wix-style-react

Version:
14 lines (11 loc) 362 B
import { baseUniDriverFactory } from '../../test/utils/unidriver'; export const collapseDriverFactory = base => { return { ...baseUniDriverFactory(base), /** * Checks whether the component is expanded and the content is visible * @return {Promise<boolean>} */ isOpen: async () => (await base.attr('data-open')) === 'true', }; };