Skip to content

Commit

Permalink
chore: update snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
astahmer committed Mar 9, 2024
1 parent 30e511c commit ed91b1c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/prettier-plugin/__tests__/plugin.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -396,10 +396,10 @@ describe('JSX style props', () => {
expect(await run(code)).toMatchInlineSnapshot(`
"import { Box } from "../styled-system/jsx";
<Box
ref={ref}
className={className}
key={key}
dangerouslySetInnerHtml={dangerouslySetInnerHtml}
ref={ref}
>
Hello
</Box>;
Expand Down Expand Up @@ -449,7 +449,7 @@ describe('JSX style props', () => {

expect(await run(code, { pandaFirstProps: [] })).toMatchInlineSnapshot(`
"import { Box } from "../styled-system/jsx";
<Box className={className} key={key} ref={ref} aria-label="aria-label">
<Box ref={ref} className={className} key={key} aria-label="aria-label">
Hello
</Box>;
"
Expand Down Expand Up @@ -846,10 +846,10 @@ describe('Call Expression css(xxx) arguments', () => {
"import { css } from "../styled-system/css";
<div
className={css({
ref: ref,
className: className,
key: key,
dangerouslySetInnerHTML: dangerouslySetInnerHTML,
ref: ref,
})}
>
Hello
Expand Down Expand Up @@ -894,9 +894,9 @@ describe('Call Expression css(xxx) arguments', () => {
"import { css } from "../styled-system/css";
<div
className={css({
ref: ref,
className: className,
key: key,
ref: ref,
ariaLabel: "ariaLabel",
})}
>
Expand Down

0 comments on commit ed91b1c

Please sign in to comment.