Skip to content

Commit e25bfd4

Browse files
committed
test: update snaps
1 parent 29cf719 commit e25bfd4

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

sandbox/codegen/__tests__/frameworks/preact.styled-factory.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ describe('styled factory - button recipe', () => {
350350
)
351351

352352
expect(container.firstElementChild?.outerHTML).toMatchInlineSnapshot(
353-
`"<div class="d_flex flex-d_column gap_10px c_red.400">Click me</div>"`,
353+
`"<div class="d_flex flex-d_column gap_8px c_red.400">Click me</div>"`,
354354
)
355355
})
356356

sandbox/codegen/__tests__/frameworks/qwik.styled-factory.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ describe('styled factory - button recipe', async () => {
370370

371371
const container = screen.querySelector('div')!
372372
expect(container.outerHTML).toMatchInlineSnapshot(
373-
`"<div class="d_flex flex-d_column gap_10px c_red.400">Click me</div>"`,
373+
`"<div class="d_flex flex-d_column gap_8px c_red.400">Click me</div>"`,
374374
)
375375
})
376376

sandbox/codegen/__tests__/frameworks/solid.styled-factory.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ describe('styled factory - button recipe', () => {
428428
expect(container.firstChild).toMatchInlineSnapshot(
429429
`
430430
<div
431-
class="d_flex flex-d_column gap_10px c_red.400"
431+
class="d_flex flex-d_column gap_8px c_red.400"
432432
>
433433
Click me
434434
</div>

sandbox/codegen/__tests__/frameworks/vue.styled-factory.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ describe('styled factory - button recipe', () => {
428428
expect(firstChild).toMatchInlineSnapshot(
429429
`
430430
<div
431-
class="d_flex flex-d_column gap_10px c_red.400"
431+
class="d_flex flex-d_column gap_8px c_red.400"
432432
>
433433
Click me
434434
</div>

sandbox/codegen/__tests__/scenarios/jsx-minimal.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ describe('styled factory - button recipe', () => {
341341
expect(container.firstChild).toMatchInlineSnapshot(
342342
`
343343
<div
344-
class="d_flex flex-d_column gap_10px"
344+
class="d_flex flex-d_column gap_8px"
345345
color="red.400"
346346
>
347347
Click me

sandbox/codegen/__tests__/scenarios/jsx-none.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ describe('styled factory - button recipe', () => {
341341
expect(container.firstChild).toMatchInlineSnapshot(
342342
`
343343
<div
344-
class="d_flex flex-d_column gap_10px"
344+
class="d_flex flex-d_column gap_8px"
345345
color="red.400"
346346
>
347347
Click me

sandbox/codegen/__tests__/styled-factory.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ describe('styled factory - button recipe', () => {
350350
expect(container.firstChild).toMatchInlineSnapshot(
351351
`
352352
<div
353-
class="d_flex flex-d_column gap_10px c_red.400"
353+
class="d_flex flex-d_column gap_8px c_red.400"
354354
>
355355
Click me
356356
</div>

0 commit comments

Comments
 (0)