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

24 lines
638 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`pipeline_own_line.js 1`] = `
====================================options=====================================
parsers: ["babylon"]
printWidth: 80
| printWidth
=====================================input======================================
function pipeline() {
0
// Comment
|> x
}
=====================================output=====================================
function pipeline() {
0 |>
// Comment
x;
}
================================================================================
`;