@@ -15,15 +15,15 @@ describe("transform context-any", () => {
1515 expect (
1616 applyTransform ( `
1717 class A extends React.Component {}
18- ` )
18+ ` ) ,
1919 ) . toMatchInlineSnapshot ( `"class A extends React.Component {}"` ) ;
2020 } ) ;
2121
2222 test ( "empty pure component" , ( ) => {
2323 expect (
2424 applyTransform ( `
2525 class A extends React.PureComponent {}
26- ` )
26+ ` ) ,
2727 ) . toMatchInlineSnapshot ( `"class A extends React.PureComponent {}"` ) ;
2828 } ) ;
2929
@@ -36,7 +36,7 @@ describe("transform context-any", () => {
3636 return this.context.value;
3737 }
3838 }
39- ` )
39+ ` ) ,
4040 ) . toMatchInlineSnapshot ( `
4141 "class A extends React.Component {
4242 context: any
@@ -55,7 +55,7 @@ describe("transform context-any", () => {
5555 return this.context.value;
5656 }
5757 }
58- ` )
58+ ` ) ,
5959 ) . toMatchInlineSnapshot ( `
6060 "class A extends PureComponent {
6161 context: any;
@@ -74,7 +74,7 @@ describe("transform context-any", () => {
7474 return this.context.value;
7575 }
7676 }
77- ` )
77+ ` ) ,
7878 ) . toMatchInlineSnapshot ( `
7979 "class A extends React.Component {
8080 context: any;
@@ -94,7 +94,7 @@ describe("transform context-any", () => {
9494 return this.context.value;
9595 }
9696 }
97- ` )
97+ ` ) ,
9898 ) . toMatchInlineSnapshot ( `
9999 "class A extends React.Component {}
100100 class B extends A {
@@ -113,7 +113,7 @@ describe("transform context-any", () => {
113113 return this.context.value;
114114 }
115115 }
116- ` )
116+ ` ) ,
117117 ) . toMatchInlineSnapshot ( `
118118 "class Component {
119119 render() {
0 commit comments