|
| 1 | +// Jest Snapshot v1, https://goo.gl/fbAQLP |
| 2 | + |
| 3 | +exports[`inside-template.vue 1`] = ` |
| 4 | +====================================options===================================== |
| 5 | +parsers: ["vue"] |
| 6 | +printWidth: 80 |
| 7 | +vueIndentScriptAndStyle: true |
| 8 | + | printWidth |
| 9 | +=====================================input====================================== |
| 10 | +<template> |
| 11 | + <style> |
| 12 | + br { |
| 13 | + background: #00abc9; |
| 14 | + } |
| 15 | +
|
| 16 | + div { |
| 17 | + background: #00abc9; |
| 18 | + } |
| 19 | + </style> |
| 20 | +
|
| 21 | + <script> |
| 22 | + console.log('hello'); |
| 23 | + console.log('hello'); |
| 24 | + </script> |
| 25 | +
|
| 26 | + <br /> |
| 27 | + <footer> |
| 28 | + foo |
| 29 | + <br/> |
| 30 | + </footer> |
| 31 | +</template> |
| 32 | +
|
| 33 | +=====================================output===================================== |
| 34 | +<template> |
| 35 | + <style> |
| 36 | + br { |
| 37 | + background: #00abc9; |
| 38 | + } |
| 39 | +
|
| 40 | + div { |
| 41 | + background: #00abc9; |
| 42 | + } |
| 43 | + </style> |
| 44 | +
|
| 45 | + <script> |
| 46 | + console.log("hello"); |
| 47 | + console.log("hello"); |
| 48 | + </script> |
| 49 | +
|
| 50 | + <br /> |
| 51 | + <footer> |
| 52 | + foo |
| 53 | + <br /> |
| 54 | + </footer> |
| 55 | +</template> |
| 56 | +
|
| 57 | +================================================================================ |
| 58 | +`; |
| 59 | + |
| 60 | +exports[`inside-template.vue 2`] = ` |
| 61 | +====================================options===================================== |
| 62 | +parsers: ["vue"] |
| 63 | +printWidth: 80 |
| 64 | +vueIndentScriptAndStyle: false |
| 65 | + | printWidth |
| 66 | +=====================================input====================================== |
| 67 | +<template> |
| 68 | + <style> |
| 69 | + br { |
| 70 | + background: #00abc9; |
| 71 | + } |
| 72 | +
|
| 73 | + div { |
| 74 | + background: #00abc9; |
| 75 | + } |
| 76 | + </style> |
| 77 | +
|
| 78 | + <script> |
| 79 | + console.log('hello'); |
| 80 | + console.log('hello'); |
| 81 | + </script> |
| 82 | +
|
| 83 | + <br /> |
| 84 | + <footer> |
| 85 | + foo |
| 86 | + <br/> |
| 87 | + </footer> |
| 88 | +</template> |
| 89 | +
|
| 90 | +=====================================output===================================== |
| 91 | +<template> |
| 92 | + <style> |
| 93 | + br { |
| 94 | + background: #00abc9; |
| 95 | + } |
| 96 | +
|
| 97 | + div { |
| 98 | + background: #00abc9; |
| 99 | + } |
| 100 | + </style> |
| 101 | +
|
| 102 | + <script> |
| 103 | + console.log("hello"); |
| 104 | + console.log("hello"); |
| 105 | + </script> |
| 106 | +
|
| 107 | + <br /> |
| 108 | + <footer> |
| 109 | + foo |
| 110 | + <br /> |
| 111 | + </footer> |
| 112 | +</template> |
| 113 | +
|
| 114 | +================================================================================ |
| 115 | +`; |
| 116 | + |
| 117 | +exports[`vue-tag-indent.vue 1`] = ` |
| 118 | +====================================options===================================== |
| 119 | +parsers: ["vue"] |
| 120 | +printWidth: 80 |
| 121 | +vueIndentScriptAndStyle: true |
| 122 | + | printWidth |
| 123 | +=====================================input====================================== |
| 124 | +<script> |
| 125 | + console.log('hello'); |
| 126 | +console.log('hello'); |
| 127 | +</script> |
| 128 | +
|
| 129 | +<style lang="scss"> |
| 130 | + footer { |
| 131 | + background: #00abc9; |
| 132 | + } |
| 133 | +
|
| 134 | +footer { |
| 135 | + background: #00abc9; |
| 136 | +} |
| 137 | +</style> |
| 138 | +
|
| 139 | +<template> |
| 140 | + <br /> |
| 141 | + <footer> |
| 142 | + foo |
| 143 | + <br/> |
| 144 | + </footer> |
| 145 | +</template> |
| 146 | +
|
| 147 | +=====================================output===================================== |
| 148 | +<script> |
| 149 | + console.log("hello"); |
| 150 | + console.log("hello"); |
| 151 | +</script> |
| 152 | +
|
| 153 | +<style lang="scss"> |
| 154 | + footer { |
| 155 | + background: #00abc9; |
| 156 | + } |
| 157 | +
|
| 158 | + footer { |
| 159 | + background: #00abc9; |
| 160 | + } |
| 161 | +</style> |
| 162 | +
|
| 163 | +<template> |
| 164 | + <br /> |
| 165 | + <footer> |
| 166 | + foo |
| 167 | + <br /> |
| 168 | + </footer> |
| 169 | +</template> |
| 170 | +
|
| 171 | +================================================================================ |
| 172 | +`; |
| 173 | + |
| 174 | +exports[`vue-tag-indent.vue 2`] = ` |
| 175 | +====================================options===================================== |
| 176 | +parsers: ["vue"] |
| 177 | +printWidth: 80 |
| 178 | +vueIndentScriptAndStyle: false |
| 179 | + | printWidth |
| 180 | +=====================================input====================================== |
| 181 | +<script> |
| 182 | + console.log('hello'); |
| 183 | +console.log('hello'); |
| 184 | +</script> |
| 185 | +
|
| 186 | +<style lang="scss"> |
| 187 | + footer { |
| 188 | + background: #00abc9; |
| 189 | + } |
| 190 | +
|
| 191 | +footer { |
| 192 | + background: #00abc9; |
| 193 | +} |
| 194 | +</style> |
| 195 | +
|
| 196 | +<template> |
| 197 | + <br /> |
| 198 | + <footer> |
| 199 | + foo |
| 200 | + <br/> |
| 201 | + </footer> |
| 202 | +</template> |
| 203 | +
|
| 204 | +=====================================output===================================== |
| 205 | +<script> |
| 206 | +console.log("hello"); |
| 207 | +console.log("hello"); |
| 208 | +</script> |
| 209 | +
|
| 210 | +<style lang="scss"> |
| 211 | +footer { |
| 212 | + background: #00abc9; |
| 213 | +} |
| 214 | +
|
| 215 | +footer { |
| 216 | + background: #00abc9; |
| 217 | +} |
| 218 | +</style> |
| 219 | +
|
| 220 | +<template> |
| 221 | + <br /> |
| 222 | + <footer> |
| 223 | + foo |
| 224 | + <br /> |
| 225 | + </footer> |
| 226 | +</template> |
| 227 | +
|
| 228 | +================================================================================ |
| 229 | +`; |
0 commit comments