jsfmt.spec.js.snap 749 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`format-anyway.json 1`] = `
  3. {"allOn": "Single", "Line": "example",
  4. "noSpace":true,
  5. "quote": {
  6. "singleQuote": "example",
  7. "indented": true,
  8. },
  9. "phoneNumbers": [
  10. {"type": "home",
  11. "number": "212 555-1234"},
  12. {"type": "office",
  13. "trailing": "commas by accident"},
  14. ],
  15. }
  16. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  17. {
  18. "allOn": "Single",
  19. "Line": "example",
  20. "noSpace": true,
  21. "quote": {
  22. "singleQuote": "example",
  23. "indented": true
  24. },
  25. "phoneNumbers": [
  26. {
  27. "type": "home",
  28. "number": "212 555-1234"
  29. },
  30. {
  31. "type": "office",
  32. "trailing": "commas by accident"
  33. }
  34. ]
  35. }
  36. `;