jsfmt.spec.js.snap 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`bracket.js 1`] = `
  3. export {
  4. runTaskForChanged,
  5. description,
  6. someOtherLabel,
  7. thatMakes,
  8. itGo,
  9. multiLine,
  10. andMore,
  11. soWeCanGetItTo80Columns
  12. };
  13. export {fitsIn, oneLine};
  14. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  15. export {
  16. runTaskForChanged,
  17. description,
  18. someOtherLabel,
  19. thatMakes,
  20. itGo,
  21. multiLine,
  22. andMore,
  23. soWeCanGetItTo80Columns
  24. };
  25. export { fitsIn, oneLine };
  26. `;
  27. exports[`bracket.js 2`] = `
  28. export {
  29. runTaskForChanged,
  30. description,
  31. someOtherLabel,
  32. thatMakes,
  33. itGo,
  34. multiLine,
  35. andMore,
  36. soWeCanGetItTo80Columns
  37. };
  38. export {fitsIn, oneLine};
  39. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  40. export {
  41. runTaskForChanged,
  42. description,
  43. someOtherLabel,
  44. thatMakes,
  45. itGo,
  46. multiLine,
  47. andMore,
  48. soWeCanGetItTo80Columns
  49. };
  50. export {fitsIn, oneLine};
  51. `;
  52. exports[`empty.js 1`] = `
  53. export {};
  54. export {} from ".";
  55. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  56. export {};
  57. export {} from ".";
  58. `;
  59. exports[`empty.js 2`] = `
  60. export {};
  61. export {} from ".";
  62. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  63. export {};
  64. export {} from ".";
  65. `;