jsfmt.spec.js.snap 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`comments-1.js 1`] = `
  3. // hi l<|>ol
  4. function ehllooo () {
  5. const hi = "hi"
  6. }
  7. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  8. // hi l<|>ol
  9. function ehllooo() {
  10. const hi = "hi";
  11. }
  12. `;
  13. exports[`comments-2.js 1`] = `
  14. <|>
  15. // howdy
  16. // hi lol
  17. const y = 5
  18. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  19. <|>// howdy
  20. // hi lol
  21. const y = 5;
  22. `;
  23. exports[`comments-3.js 1`] = `
  24. /<|>/ howdy
  25. // hi lol
  26. const y = 5
  27. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  28. /<|>/ howdy
  29. // hi lol
  30. const y = 5;
  31. `;
  32. exports[`comments-4.js 1`] = `
  33. // howdy
  34. // hi lol
  35. const y = 5
  36. // traling! <|>
  37. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  38. // howdy
  39. // hi lol
  40. const y = 5;
  41. // traling!<|>
  42. `;
  43. exports[`cursor-0.js 1`] = `
  44. (function() {return <|> 15})()
  45. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  46. (function() {
  47. return <|>15;
  48. })();
  49. `;
  50. exports[`cursor-1.js 1`] = `
  51. (function(){return <|>15})()
  52. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  53. (function() {
  54. return <|>15;
  55. })();
  56. `;
  57. exports[`cursor-2.js 1`] = `
  58. foo <|> (bar);
  59. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  60. foo<|>(bar);
  61. `;
  62. exports[`cursor-3.js 1`] = `
  63. <|>
  64. const y = 5
  65. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  66. <|>const y = 5;
  67. `;
  68. exports[`cursor-4.js 1`] = `
  69. const y = 5
  70. <|>
  71. const z = 9
  72. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  73. const y = 5;
  74. <|>const z = 9;
  75. `;
  76. exports[`cursor-5.js 1`] = `
  77. const /* h<|>i */ y = 5
  78. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  79. const /* h<|>i */ y = 5;
  80. `;
  81. exports[`cursor-6.js 1`] = `
  82. const y /* h<|>i */ = 5
  83. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  84. const y /* h<|>i */ = 5;
  85. `;
  86. exports[`cursor-7.js 1`] = `
  87. const y = 5
  88. <|>
  89. const z = 9
  90. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  91. const y = 5;
  92. <|>
  93. const z = 9;
  94. `;
  95. exports[`cursor-8.js 1`] = `
  96. func<|>tion banana(){}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  97. func<|>tion banana() {}
  98. `;
  99. exports[`cursor-9.js 1`] = `
  100. thisWillBeFormatted <|> (2 ,3, )~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  101. thisWillBeFormatted<|>(2, 3);
  102. `;
  103. exports[`cursor-10.js 1`] = `
  104. const y = 5
  105. <|>
  106. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  107. const y = 5;
  108. <|>
  109. `;
  110. exports[`file-start-with-comment-1.js 1`] = `
  111. // hi<|> lol
  112. haha()
  113. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  114. // hi<|> lol
  115. haha();
  116. `;
  117. exports[`file-start-with-comment-2.js 1`] = `
  118. // hi lol
  119. haha()<|>
  120. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  121. // hi lol
  122. haha()<|>;
  123. `;
  124. exports[`range-0.js 1`] = `
  125. thisWontBeFormatted ( 1 ,3)
  126. thisWillBeFormatted <|> (2 ,3, )
  127. thisWontBeFormatted (2, 90 ,)
  128. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  129. thisWontBeFormatted ( 1 ,3)
  130. thisWillBeFormatted<|>(2, 3);
  131. thisWontBeFormatted (2, 90 ,)
  132. `;
  133. exports[`range-1.js 1`] = `
  134. thisWontBeFormatted ( 1 ,3)
  135. thisWillBeFormatted (2 ,3<|>, )
  136. thisWontBeFormatted (2, 90 ,)
  137. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  138. thisWontBeFormatted ( 1 ,3)
  139. thisWillBeFormatted(2, 3<|>);
  140. thisWontBeFormatted (2, 90 ,)
  141. `;
  142. exports[`range-2.js 1`] = `
  143. thisWontBeFormatted ( 1 ,3)
  144. thisWillBeFormatted (2 ,3, <|> )
  145. thisWontBeFormatted (2, 90 ,)
  146. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  147. thisWontBeFormatted ( 1 ,3)
  148. thisWillBeFormatted(2, 3<|>);
  149. thisWontBeFormatted (2, 90 ,)
  150. `;
  151. exports[`range-3.js 1`] = `
  152. thisWontBeFormatted <|> ( 1 ,3)
  153. thisWillBeFormatted (2 ,3, )
  154. thisWontBeFormatted (2, 90 ,)
  155. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  156. thisWontBeFormatted <|> ( 1 ,3)
  157. thisWillBeFormatted(2, 3);
  158. thisWontBeFormatted (2, 90 ,)
  159. `;
  160. exports[`range-4.js 1`] = `
  161. thisWontBeFormatted ( 1 ,3)
  162. thisWillBeFormatted (2 ,3, )
  163. thisWontBeFormatted (2, 9<|>0 ,)
  164. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  165. thisWontBeFormatted ( 1 ,3)
  166. thisWillBeFormatted(2, 3);
  167. thisWontBeFormatted (2, 9<|>0 ,)
  168. `;