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

53 lines
844 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`boundary.js 1`] = `
\`\${
a + // a
a
}
\${a // comment
}
\${b /* comment */}
\${/* comment */ c /* comment */}
\${// comment
d //comment
}
\${// $FlowFixMe found when converting React.createClass to ES6
ExampleStory.getFragment('story')}
\`;
<div>
{ExampleStory.getFragment('story') // $FlowFixMe found when converting React.createClass to ES6
}
</div>;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
\`\${a + a // a
}
\${a // comment
}
\${b /* comment */}
\${/* comment */ c /* comment */}
\${// comment
d //comment
}
\${// $FlowFixMe found when converting React.createClass to ES6
ExampleStory.getFragment("story")}
\`;
<div>
{ExampleStory.getFragment("story") // $FlowFixMe found when converting React.createClass to ES6
}
</div>;
`;