1
1
// Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
3
- exports [` babel-plugin-split-styles Dynamic styles should stay in \` style\` : Dynamic styles should stay in \` style\` 1` ] = `
3
+ exports [` babel-plugin-enhanced-react-style Dynamic styles should stay in \` style\` : Dynamic styles should stay in \` style\` 1` ] = `
4
4
"
5
5
<div style = { {color: a ? \\" red\\ " : \\" green\\ " }} />
6
6
@@ -12,7 +12,7 @@ exports[`babel-plugin-split-styles Dynamic styles should stay in \`style\`: Dyna
12
12
"
13
13
` ;
14
14
15
- exports [` babel-plugin-split-styles Extract static from dynamic: Extract static from dynamic 1` ] = `
15
+ exports [` babel-plugin-enhanced-react-style Extract static from dynamic: Extract static from dynamic 1` ] = `
16
16
"
17
17
<div style = { {background: \\" blue\\ " , color: a ? \\" red\\ " : \\" green\\ " }} />
18
18
@@ -26,7 +26,7 @@ exports[`babel-plugin-split-styles Extract static from dynamic: Extract static f
26
26
"
27
27
` ;
28
28
29
- exports [` babel-plugin-split-styles Ignore bound jsx elements: Ignore bound jsx elements 1` ] = `
29
+ exports [` babel-plugin-enhanced-react-style Ignore bound jsx elements: Ignore bound jsx elements 1` ] = `
30
30
"
31
31
const div = () => { } ; <div style = { {some: \\" other\\ " , stuff }} />
32
32
@@ -41,7 +41,7 @@ const div = () => {};
41
41
"
42
42
` ;
43
43
44
- exports [` babel-plugin-split-styles Ignore non identifier as element name: Ignore non identifier as element name 1` ] = `
44
+ exports [` babel-plugin-enhanced-react-style Ignore non identifier as element name: Ignore non identifier as element name 1` ] = `
45
45
"
46
46
<animated.div style = { {some: \\" other\\ " , stuff }} />
47
47
@@ -54,7 +54,7 @@ exports[`babel-plugin-split-styles Ignore non identifier as element name: Ignore
54
54
"
55
55
` ;
56
56
57
- exports [` babel-plugin-split-styles Only static css: Only static css 1` ] = `
57
+ exports [` babel-plugin-enhanced-react-style Only static css: Only static css 1` ] = `
58
58
"
59
59
<div style = { {color: \\" green\\ " }} />
60
60
@@ -66,7 +66,7 @@ exports[`babel-plugin-split-styles Only static css: Only static css 1`] = `
66
66
"
67
67
` ;
68
68
69
- exports [` babel-plugin-split-styles Should bail if \` css\` property exists: Should bail if \` css\` property exists 1` ] = `
69
+ exports [` babel-plugin-enhanced-react-style Should bail if \` css\` property exists: Should bail if \` css\` property exists 1` ] = `
70
70
"
71
71
<div css = { {}} style = { {background: \\" blue\\ " }} />
72
72
@@ -78,7 +78,7 @@ exports[`babel-plugin-split-styles Should bail if \`css\` property exists: Shoul
78
78
"
79
79
` ;
80
80
81
- exports [` babel-plugin-split-styles Should bail on non object expression: Should bail on non object expression 1` ] = `
81
+ exports [` babel-plugin-enhanced-react-style Should bail on non object expression: Should bail on non object expression 1` ] = `
82
82
"
83
83
<div style = { a } />
84
84
@@ -88,7 +88,7 @@ exports[`babel-plugin-split-styles Should bail on non object expression: Should
88
88
"
89
89
` ;
90
90
91
- exports [` babel-plugin-split-styles Should work with boolean attributes: Should work with boolean attributes 1` ] = `
91
+ exports [` babel-plugin-enhanced-react-style Should work with boolean attributes: Should work with boolean attributes 1` ] = `
92
92
"
93
93
<div allowFullScreen />
94
94
@@ -98,7 +98,7 @@ exports[`babel-plugin-split-styles Should work with boolean attributes: Should w
98
98
"
99
99
` ;
100
100
101
- exports [` babel-plugin-split-styles Should work with nested object: Should work with nested object 1` ] = `
101
+ exports [` babel-plugin-enhanced-react-style Should work with nested object: Should work with nested object 1` ] = `
102
102
"
103
103
<div style = { {color: \\" green\\ " , \\" &\\ " : { \\" :hover\\ " : { color: \\" blue\\ " }}}} />
104
104
0 commit comments