UNPKG

vitest-plugin-vis

Version:
13 lines (10 loc) 558 B
import type { ImageSnapshotNextIndexCommand } from '../../shared/commands.types.ts' import { visServerContext } from '../vis_server_context.ts' import type { ExtendedBrowserCommand } from '../vis_server_context.types.ts' import { assertTestPathDefined } from './_assertions.ts' export const imageSnapshotNextIndex: ExtendedBrowserCommand< Parameters<ImageSnapshotNextIndexCommand['imageSnapshotNextIndex']> > = async (context, taskId) => { assertTestPathDefined(context, 'imageSnapshotNextIndex') return visServerContext.getTaskCount(context, taskId) }