File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
packages/material-ui/src/styles Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff 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 } >
You can’t perform that action at this time.
0 commit comments