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

34 lines
1.3 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`no_regression.js 1`] = `
====================================options=====================================
parsers: ["babylon", "flow", "typescript"]
printWidth: 80
| printWidth
=====================================input======================================
// Ensure no regression.
"use strict";
=====================================output=====================================
// Ensure no regression.
"use strict";
================================================================================
`;
exports[`use_strict.js 1`] = `
====================================options=====================================
parsers: ["babylon", "flow", "typescript"]
printWidth: 80
| printWidth
=====================================input======================================
// Parentheses around expression statement should be preserved in this case.
("use strict");
=====================================output=====================================
// Parentheses around expression statement should be preserved in this case.
("use strict");
================================================================================
`;