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

52 lines
1.3 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`body.js 1`] = `
====================================options=====================================
parsers: ["flow", "typescript"]
printWidth: 80
| printWidth
=====================================input======================================
with (a);
if (1); else if (2); else;
for (;;);
while (1);
for (var i in o);
for (var i of o);
do; while(1);
=====================================output=====================================
with (a);
if (1);
else if (2);
else;
for (;;);
while (1);
for (var i in o);
for (var i of o);
do;
while (1);
================================================================================
`;
exports[`no-newline.js 1`] = `
====================================options=====================================
parsers: ["flow", "typescript"]
printWidth: 80
| printWidth
=====================================input======================================
if (a) {
b;
;
}
=====================================output=====================================
if (a) {
b;
}
================================================================================
`;