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

21 lines
569 B
Plaintext
Raw Normal View History

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`lists.graphql 1`] = `
{
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!"])
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
{
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!"
]
)
}
`;