UNPKG

@argos-ci/cypress

Version:

Cypress SDK for visual testing with Argos.

13 lines (10 loc) 449 B
import { UploadParameters } from '@argos-ci/core'; type RegisterArgosTaskOptions = Omit<UploadParameters, "files" | "root" | "metadata"> & { /** * Upload the report to Argos. * @default true */ uploadToArgos?: boolean; }; declare function registerArgosTask(on: Cypress.PluginEvents, config: Cypress.PluginConfigOptions, options?: RegisterArgosTaskOptions): void; export { type RegisterArgosTaskOptions, registerArgosTask };