Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
20 changes: 11 additions & 9 deletions packages/stacks-classic/lib/test/visual-test-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ const scheduleVisualTest = ({
}

let retryAttempts = 3;
let lastError: Error | null = null;

do {
await fixture(element);
Expand All @@ -37,21 +38,22 @@ const scheduleVisualTest = ({
return;
} catch (error) {
const e = error as Error;
// if the error is not a visual diff failure, retry
// this is to prevent flaky tests due to snapshot capturing
if (
retryAttempts > 0 &&
!e.message.includes("Visual diff failed.")
) {
retryAttempts--;
continue;
} else {
lastError = e;
// if the error is a visual diff failure, fail immediately
if (e.message.includes("Visual diff failed.")) {
throw e;
}
// otherwise retry (to prevent flaky tests due to snapshot capturing)
retryAttempts--;
} finally {
el.remove();
}
} while (retryAttempts > 0);

// If we exhausted all retries without success, throw the last error
if (lastError) {
throw lastError;
}
});
};

Expand Down
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Loading