File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ test('returns system props styles', () => {
81
81
const result = css ( {
82
82
color : 'primary' ,
83
83
fontSize : [ 2 , 3 , 4 ] ,
84
- } ) ( { theme : theme } )
84
+ } ) ( { theme } )
85
85
expect ( result ) . toEqual ( {
86
86
fontSize : 16 ,
87
87
'@media screen and (min-width: 40em)' : {
@@ -100,7 +100,7 @@ test('returns nested system props styles', () => {
100
100
'&:hover' : {
101
101
color : 'secondary' ,
102
102
} ,
103
- } ) ( { theme : theme } )
103
+ } ) ( { theme } )
104
104
expect ( result ) . toEqual ( {
105
105
color : 'tomato' ,
106
106
'&:hover' : {
@@ -115,7 +115,7 @@ test('returns nested responsive styles', () => {
115
115
h1 : {
116
116
py : [ 3 , 4 ] ,
117
117
} ,
118
- } ) ( { theme : theme } )
118
+ } ) ( { theme } )
119
119
expect ( result ) . toEqual ( {
120
120
color : 'tomato' ,
121
121
h1 : {
@@ -142,7 +142,7 @@ test('handles all core styled system props', () => {
142
142
bg : 'secondary' ,
143
143
fontFamily : 'monospace' ,
144
144
lineHeight : 'body' ,
145
- } ) ( { theme : theme } )
145
+ } ) ( { theme } )
146
146
expect ( result ) . toEqual ( {
147
147
margin : 0 ,
148
148
marginBottom : 8 ,
You can’t perform that action at this time.
0 commit comments