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

47 lines
1.5 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`bracket_spacing.graphql 1`] = `
====================================options=====================================
parsers: ["graphql"]
printWidth: 80
| printWidth
=====================================input======================================
fragment Visit on HighlightedVisit
@argumentDefinitions(
count: {type: "Int", defaultValue: 20}
) {
name
}
=====================================output=====================================
fragment Visit on HighlightedVisit
@argumentDefinitions(count: { type: "Int", defaultValue: 20 }) {
name
}
================================================================================
`;
exports[`bracket_spacing.graphql 2`] = `
====================================options=====================================
bracketSpacing: false
parsers: ["graphql"]
printWidth: 80
| printWidth
=====================================input======================================
fragment Visit on HighlightedVisit
@argumentDefinitions(
count: {type: "Int", defaultValue: 20}
) {
name
}
=====================================output=====================================
fragment Visit on HighlightedVisit
@argumentDefinitions(count: {type: "Int", defaultValue: 20}) {
name
}
================================================================================
`;