123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- declare global {
-
- namespace Cypress {
- interface Chainable<Subject> {
-
- paste(options: {
- pastePayload?: string
- pasteFormat?: string
- files?: File[]
- }): Chainable<Subject>
- selectText(direction: 'left' | 'right', size: number): Chainable<Subject>
- matchImage(
- options?: Partial<{
-
-
- screenshotConfig: Partial<Cypress.ScreenshotOptions>
-
-
- diffConfig: Partial<{
-
- threshold: number
-
- includeAA: boolean
-
- alpha: number
-
- aaColor: [number, number, number]
-
- diffColor: [number, number, number]
-
- diffColorAlt: [number, number, number] | null
-
- diffMask: boolean
- }>
-
-
- updateImages: boolean
-
-
-
- imagesDir: string
-
-
- maxDiffThreshold: number
-
-
-
- forceDeviceScaleFactor: boolean
-
-
- title: string
- }>,
- ): Chainable<Subject>
- mount: (typeof import('cypress/vue'))['mount']
- }
- }
- }
- export {}
|