Skip to content

Commit abe38f4

Browse files
committed
chore(@theme-ui/css): revert stylelint format
1 parent 5c13bd1 commit abe38f4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/css/test/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ test('returns system props styles', () => {
8181
const result = css({
8282
color: 'primary',
8383
fontSize: [2, 3, 4],
84-
})({ theme: theme })
84+
})({ theme })
8585
expect(result).toEqual({
8686
fontSize: 16,
8787
'@media screen and (min-width: 40em)': {
@@ -100,7 +100,7 @@ test('returns nested system props styles', () => {
100100
'&:hover': {
101101
color: 'secondary',
102102
},
103-
})({ theme: theme })
103+
})({ theme })
104104
expect(result).toEqual({
105105
color: 'tomato',
106106
'&:hover': {
@@ -115,7 +115,7 @@ test('returns nested responsive styles', () => {
115115
h1: {
116116
py: [3, 4],
117117
},
118-
})({ theme: theme })
118+
})({ theme })
119119
expect(result).toEqual({
120120
color: 'tomato',
121121
h1: {
@@ -142,7 +142,7 @@ test('handles all core styled system props', () => {
142142
bg: 'secondary',
143143
fontFamily: 'monospace',
144144
lineHeight: 'body',
145-
})({ theme: theme })
145+
})({ theme })
146146
expect(result).toEqual({
147147
margin: 0,
148148
marginBottom: 8,

0 commit comments

Comments
 (0)