cy.compareSnapshot command

All available options for compareSnapshot command

cy.compareSnapshot command could be use in a most basic way:

cy.compareSnapshot('header')

or in a more configurable way:

cy.compareSnapshot({
  name: 'header',
  testThreshold: 0.2
})
  • Available options are:

OptionTypeRequired/Default valueDescription

name

string

required

The name of the snapshots that will be generated

testThreshold

number

0

A number between 0 and 1 that represents the allowed percentage of pixels that can be different between the two snapshots

retryOptions

{ limit:1 }

Config objects passed to cypress-recurse

exactName

boolean

false

If set to true, will use the given name as it is without transforming it to [spec_file_name]-[name]

cypressScreenshotOptions

undefined

options object to change the default behavior of cy.screenshot()

Last updated