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

38 lines
1.1 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`comment.js 1`] = `
====================================options=====================================
parsers: ["flow", "typescript"]
printWidth: 80
| printWidth
=====================================input======================================
{
inf_leave: // goto emulation
for (;;) {}
}
=====================================output=====================================
{
// goto emulation
inf_leave: for (;;) {}
}
================================================================================
`;
exports[`empty_label.js 1`] = `
====================================options=====================================
parsers: ["flow", "typescript"]
printWidth: 80
| printWidth
=====================================input======================================
a:;
b
=====================================output=====================================
a:;
b;
================================================================================
`;