Skip to content

Commit 7f28f21

Browse files
committed
fix: fix css tests after adding prettier
1 parent f36f8d8 commit 7f28f21

File tree

1 file changed

+35
-35
lines changed

1 file changed

+35
-35
lines changed

src/__tests__/css.test.tsx

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -126,53 +126,53 @@ describe('styled props', () => {
126126
test('Should handle camel case styles', () => {
127127
const { css } = createStyled()
128128
const styles = css`
129-
flexdirection: ${'1'};
130-
justifycontent: ${'1'};
131-
alignitems: ${'1'};
132-
alignself: ${'1'};
133-
aligncontent: ${'1'};
129+
flexDirection: ${'1'};
130+
justifyContent: ${'1'};
131+
alignItems: ${'1'};
132+
alignSelf: ${'1'};
133+
alignContent: ${'1'};
134134
width: ${1}px;
135135
height: ${1}px;
136-
margintop: ${1}px;
137-
marginbottom: ${1}px;
138-
marginleft: ${1}px;
139-
marginright: ${1}px;
140-
paddingtop: ${1}px;
141-
paddingbottom: ${1}px;
142-
paddingleft: ${1}px;
143-
paddingright: ${1}px;
144-
paddinghorizontal: ${1}px;
145-
paddingvertical: ${1}px;
146-
fontsize: ${1}px;
147-
fontweight: ${'1'};
148-
fontstyle: ${'1'};
149-
fontfamily: ${'1'};
150-
lineheight: ${1}px;
151-
textalign: ${'1'};
136+
marginTop: ${1}px;
137+
marginBottom: ${1}px;
138+
marginLeft: ${1}px;
139+
marginRight: ${1}px;
140+
paddingTop: ${1}px;
141+
paddingBottom: ${1}px;
142+
paddingLeft: ${1}px;
143+
paddingRight: ${1}px;
144+
paddingHorizontal: ${1}px;
145+
paddingVertical: ${1}px;
146+
fontSize: ${1}px;
147+
fontWeight: ${'1'};
148+
fontStyle: ${'1'};
149+
fontFamily: ${'1'};
150+
lineHeight: ${1}px;
151+
textAlign: ${'1'};
152152
color: ${'1'};
153-
backgroundcolor: ${'1'};
154-
bordercolor: ${'1'};
155-
borderwidth: ${1}px;
156-
borderradius: ${1}px;
153+
backgroundColor: ${'1'};
154+
borderColor: ${'1'};
155+
borderWidth: ${1}px;
156+
borderRadius: ${1}px;
157157
opacity: ${1};
158-
resizemode: ${'1'};
159-
tintcolor: ${'1'};
160-
shadowcolor: ${'1'};
161-
shadowoffset: ${1}px;
162-
shadowopacity: ${1};
163-
shadowradius: ${1}px;
158+
resizeMode: ${'1'};
159+
tintColor: ${'1'};
160+
shadowColor: ${'1'};
161+
shadowOffset: ${1}px;
162+
shadowOpacity: ${1};
163+
shadowRadius: ${1}px;
164164
elevation: ${1};
165165
overflow: ${'1'};
166166
gap: ${1}px;
167-
rowgap: ${1}px;
168-
columngap: ${1}px;
169-
zindex: ${1};
167+
rowGap: ${1}px;
168+
columnGap: ${1}px;
169+
zIndex: ${1};
170170
position: ${'1'};
171171
left: ${1}px;
172172
top: ${1}px;
173173
bottom: ${1}px;
174174
right: ${1}px;
175-
aspectratio: ${1};
175+
aspectRatio: ${1};
176176
direction: ${'1'};
177177
display: ${'1'};
178178
start: ${1}px;

0 commit comments

Comments
 (0)