Skip to content

Commit

Permalink
chore(tests) Fix tests broken by merge
Browse files Browse the repository at this point in the history
  • Loading branch information
Rheeseyb committed Oct 12, 2023
1 parent 2df2a4d commit 168297f
Showing 1 changed file with 16 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1414,10 +1414,6 @@ describe('Convert to absolute/escape hatch', () => {
backgroundColor: '#aaaaaa33',
width: '50%',
height: '20%',
right: 200,
bottom: 320,
top: 0,
left: 0
}}
data-uid='bbb'
data-testid='bbb'
Expand Down Expand Up @@ -1457,7 +1453,14 @@ describe('Convert to absolute/escape hatch', () => {
makeTestProjectCodeWithSnippet(
`<View style={{ ...(props.style || {}) }} data-uid='aaa'>
<View
style={{ backgroundColor: '#aaaaaa33', width: 200, height: 80, right: 185, bottom: 305, top: 15, left: 15, position: 'absolute', }}
style={{
backgroundColor: '#aaaaaa33',
width: 200,
height: 80,
position: 'absolute',
left: 15,
top: 15,
}}
data-uid='bbb'
data-testid='bbb'
/>
Expand All @@ -1475,10 +1478,6 @@ describe('Convert to absolute/escape hatch', () => {
backgroundColor: '#aaaaaa33',
width: '50%',
height: '20%',
right: 200,
bottom: 320,
top: 0,
left: 0
}}
data-uid='bbb'
data-testid='bbb'
Expand Down Expand Up @@ -1518,7 +1517,14 @@ describe('Convert to absolute/escape hatch', () => {
makeTestProjectCodeWithSnippet(
`<View style={{ ...(props.style || {}) }} data-uid='aaa'>
<View
style={{ backgroundColor: '#aaaaaa33', width: 200, height: 80, right: 185, bottom: 305, top: 15, left: 15, position: 'absolute', }}
style={{
backgroundColor: '#aaaaaa33',
width: 200,
height: 80,
position: 'absolute',
left: 15,
top: 15,
}}
data-uid='bbb'
data-testid='bbb'
/>
Expand Down

0 comments on commit 168297f

Please sign in to comment.