prettier/tests/stylefmt/comment-in-rules/__snapshots__/jsfmt.spec.js.snap

34 lines
453 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`comment-in-rules.css 1`] = `
.class
{display: inline-block;
/* comment */
float: left;}
#id {
font-size: 12px;
/* colors */
color: pink;
background: #fff;
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.class {
display: inline-block;
/* comment */
float: left;
}
#id {
font-size: 12px;
/* colors */
color: pink;
background: #fff;
}
`;