Skip to content

Commit

Permalink
chore(@theme-ui/css): revert stylelint format
Browse files Browse the repository at this point in the history
  • Loading branch information
hasparus committed Feb 19, 2020
1 parent b9eb43b commit cdd5889
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/css/test/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ test('returns system props styles', () => {
const result = css({
color: 'primary',
fontSize: [2, 3, 4],
})({ theme: theme })
})({ theme })
expect(result).toEqual({
fontSize: 16,
'@media screen and (min-width: 40em)': {
Expand All @@ -100,7 +100,7 @@ test('returns nested system props styles', () => {
'&:hover': {
color: 'secondary',
},
})({ theme: theme })
})({ theme })
expect(result).toEqual({
color: 'tomato',
'&:hover': {
Expand All @@ -115,7 +115,7 @@ test('returns nested responsive styles', () => {
h1: {
py: [3, 4],
},
})({ theme: theme })
})({ theme })
expect(result).toEqual({
color: 'tomato',
h1: {
Expand All @@ -142,7 +142,7 @@ test('handles all core styled system props', () => {
bg: 'secondary',
fontFamily: 'monospace',
lineHeight: 'body',
})({ theme: theme })
})({ theme })
expect(result).toEqual({
margin: 0,
marginBottom: 8,
Expand Down

0 comments on commit cdd5889

Please sign in to comment.