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

28 lines
995 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`hello.graphql 1`] = `
====================================options=====================================
parsers: ["graphql"]
printWidth: 80
| printWidth
=====================================input======================================
{
short(var: $var, int: 5, float: 5.6, bool: true, string: "hello world!")
long(var: $thisIsAReallyLongVariableNameRight, int: 52342342342, float: 5.6, bool: true, string: "hello world this is a very long string!")
}
=====================================output=====================================
{
short(var: $var, int: 5, float: 5.6, bool: true, string: "hello world!")
long(
var: $thisIsAReallyLongVariableNameRight
int: 52342342342
float: 5.6
bool: true
string: "hello world this is a very long string!"
)
}
================================================================================
`;