Skip to content

Commit 2c410ad

Browse files
committed
prettier
1 parent 81dab2d commit 2c410ad

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

packages/material-ui/src/styles/experimentalStyled.test.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ describe('experimentalStyled', () => {
5858

5959
it('should use theme from context if available', () => {
6060
const Div = styled('div')`
61-
width: ${(props) => props.theme.spacing(1)}
61+
width: ${(props) => props.theme.spacing(1)};
6262
`;
6363

6464
const theme = createMuiTheme({
@@ -107,7 +107,6 @@ describe('experimentalStyled', () => {
107107
*/
108108
let DivObj;
109109

110-
111110
before(() => {
112111
Div = styled('div')`
113112
font-size: ${(props) => props.scale * 8}px;
@@ -202,7 +201,7 @@ describe('experimentalStyled', () => {
202201
)({
203202
width: '200px',
204203
height: '300px',
205-
})
204+
});
206205
});
207206

208207
it('should work with specified muiOptions', () => {
@@ -355,7 +354,6 @@ describe('experimentalStyled', () => {
355354
});
356355
});
357356

358-
359357
it('should resolve the sx prop when styles are object', () => {
360358
const { container } = render(
361359
<ThemeProvider theme={theme}>

0 commit comments

Comments
 (0)