prettier/tests/graphql_lists/__snapshots__/jsfmt.spec.js.snap

28 lines
940 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`lists.graphql 1`] = `
====================================options=====================================
parsers: ["graphql"]
printWidth: 80
| printWidth
=====================================input======================================
{
shortWithList(list: [1, 2, 3])
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!"])
}
=====================================output=====================================
{
shortWithList(list: [1, 2, 3])
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!"
]
)
}
================================================================================
`;