jsfmt.spec.js.snap 569 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`object.js 1`] = `
  3. state = {
  4. // students
  5. hoverColumn: -1
  6. };
  7. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  8. state = {
  9. // students
  10. hoverColumn: -1
  11. };
  12. `;
  13. exports[`series.js 1`] = `
  14. 1 + ++x;
  15. 1 + x++;
  16. + ++x;
  17. + x++;
  18. x++ + 1;
  19. ++x + 1;
  20. 1 - --x;
  21. 1 - x--;
  22. - --x;
  23. - x--;
  24. x-- - 1;
  25. --x - 1;
  26. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  27. 1 + ++x;
  28. 1 + x++;
  29. +(++x);
  30. +x++;
  31. x++ + 1;
  32. ++x + 1;
  33. 1 - --x;
  34. 1 - x--;
  35. -(--x);
  36. -x--;
  37. x-- - 1;
  38. --x - 1;
  39. `;