spelling: threshold

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2025-04-17 09:55:33 -04:00
parent 5267f7c6ea
commit a463d11e57
6 changed files with 7 additions and 7 deletions

View File

@@ -126,7 +126,7 @@ export const verifyScreenshot = (name: string): void => {
cy.eyesClose();
} else if (useArgos) {
cy.argosScreenshot(name, {
threshould: 0.01,
threshold: 0.01,
});
} else {
cy.matchImageSnapshot(name);

View File

@@ -30,8 +30,8 @@ import { addMatchImageSnapshotCommand } from 'cypress-image-snapshot/command';
// SSIM actually does not catch minute changes in the image, so it is not as accurate as pixelmatch.
// addMatchImageSnapshotCommand({
// comparisonMethod: 'ssim',
// failureThreshould: 0.01,
// failureThreshouldType: 'percent',
// failureThreshold: 0.01,
// failureThresholdType: 'percent',
// customDiffConfig: {
// ssim: 'fast',
// },