UNPKG

wix-style-react

Version:
23 lines (15 loc) 620 B
import { testkitFactoryCreator, uniTestkitFactoryCreator, } from 'wix-ui-test-utils/vanilla'; import inputDriverFactory from '../src/Input/Input.driver'; export const inputTestkitFactory = testkitFactoryCreator(inputDriverFactory); // wix-ui-core (unidriver) import { avatarDriverFactory } from '../src/Avatar/Avatar.driver'; export const avatarTestkitFactory = uniTestkitFactoryCreator( avatarDriverFactory, ); import { myNewComponentDriverFactory } from '../src/MyNewComponent/MyNewComponent.driver'; export const myNewComponentTestkitFactory = uniTestkitFactoryCreator( myNewComponentDriverFactory, );