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

27 lines
643 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`objects.graphql 1`] = `
{
shortWithObj(obj: { hello: "world", x: 5 })
multilineObj(obj: {
hello: "world",
x: 5
})
longWithObj(obj: { ,,longString: "hello world this is a very long string!", list: [1, 2, 3, 4, 5, 6, 7] })
emptyObj(arg: {})
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
{
shortWithObj(obj: { hello: "world", x: 5 })
multilineObj(obj: { hello: "world", x: 5 })
longWithObj(
obj: {
longString: "hello world this is a very long string!"
list: [1, 2, 3, 4, 5, 6, 7]
}
)
emptyObj(arg: {})
}
`;