import type { UserEvent } from 'vitest/browser' import type { UserEventCommand } from './utils' export const dragAndDrop: UserEventCommand = async ( context, source, target, options_, ) => { const frame = await context.frame() await frame.dragAndDrop( source.selector, target.selector, options_, ) }