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

34 lines
770 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`flow_object_comment.js 1`] = `
====================================options=====================================
parsers: ["flow"]
printWidth: 80
| printWidth
=====================================input======================================
export default (
{
foo,
bar
}: {
// comment
foo?: Object,
// comment 2
bar?: Object,
},
) => {}
=====================================output=====================================
export default ({
foo,
bar
}: {
// comment
foo?: Object,
// comment 2
bar?: Object
}) => {};
================================================================================
`;