jsfmt.spec.js.snap 567 B

123456789101112131415161718192021
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`lists.graphql 1`] = `
  3. {
  4. shortWithList(list: [1, 2, 3])
  5. longWithList(list: ["hello world this is a very long string!","hello world this is a very long string!", "hello world this is a very long string!"])
  6. }
  7. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  8. {
  9. shortWithList(list: [1, 2, 3])
  10. longWithList(
  11. list: [
  12. "hello world this is a very long string!"
  13. "hello world this is a very long string!"
  14. "hello world this is a very long string!"
  15. ]
  16. )
  17. }
  18. `;