Skip to content

Commit

Permalink
fix: update visual test snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
amje committed Dec 28, 2024
1 parent f58a497 commit 8df4e9b
Show file tree
Hide file tree
Showing 71 changed files with 4 additions and 4 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ test.describe('ActionTooltip', {tag: '@ActionTooltip'}, () => {
}}
>
<div>
<ActionTooltip {...props}>
<ActionTooltip {...props} qa="tooltip">
<div
data-qa="trigger"
style={{
Expand All @@ -56,7 +56,7 @@ test.describe('ActionTooltip', {tag: '@ActionTooltip'}, () => {
);

await root.getByTestId('trigger').hover();
await expect(page.locator("[role='tooltip']")).toBeVisible({timeout: 1000});
await expect(page.getByTestId('tooltip')).toBeVisible({timeout: 1000});

await expectScreenshot({
themes: ['light'],
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/Dialog/DialogFooter/DialogFooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export function DialogFooter(props: DialogFooterProps) {
open={showError}
onOpenChange={handleOpenChange}
anchorRef={errorTooltipRef}
placement={['bottom', 'top']}
placement="top"
disablePortal
hasArrow
>
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/Popup/__tests__/cases.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ export const placementCases: Cases<PopupProps['placement']> = [
'left-end',
];
export const offsetCases: CasesWithName<PopupProps['offset']> = [
['4-12', {mainAxis: 4, crossAxis: 12}],
['10-25', {mainAxis: 10, crossAxis: 25}],
];
export const strategyCases: Cases<PopupProps['strategy']> = ['absolute', 'fixed'];

0 comments on commit 8df4e9b

Please sign in to comment.