UNPKG

@wix/design-system

Version:

@wix/design-system

12 lines 440 B
import { baseUniDriverFactory } from '../utils/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', }; }; //# sourceMappingURL=Collapse.uni.driver.js.map