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

32 lines
1.1 KiB
Plaintext
Raw Normal View History

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`backslash_2028.js 1`] = `
====================================options=====================================
parsers: ["flow"]
printWidth: 80
| printWidth
=====================================input======================================
1;/*a*///b/*c*/2
=====================================output=====================================
2017-11-27 05:14:45 +03:00
1; /*a*/ //b
/*c*/ 2;
================================================================================
`;
exports[`backslash_2029.js 1`] = `
====================================options=====================================
parsers: ["flow"]
printWidth: 80
| printWidth
=====================================input======================================
1;/*a*///b/*c*/2
=====================================output=====================================
2017-11-27 05:14:45 +03:00
1; /*a*/ //b
/*c*/ 2;
================================================================================
`;