prettier/tests/stylefmt/comment/__snapshots__/jsfmt.spec.js.snap

78 lines
1.0 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`comment.css 1`] = `
====================================options=====================================
parsers: ["css"]
printWidth: 80
| printWidth
=====================================input======================================
/**
* comment
*/
.class
{
padding:10px; }
/*comment*/
.foo{color:red
}
/*
at rule
*/
@media only screen {
/* inner at rule comment */
.foo { display: none; }
/*
* another comment
*/
/* in a row */
.bar {
color:yellow;
}
}
=====================================output=====================================
/**
* comment
*/
.class {
padding: 10px;
}
/*comment*/
.foo {
color: red;
}
/*
at rule
*/
@media only screen {
/* inner at rule comment */
.foo {
display: none;
}
/*
* another comment
*/
/* in a row */
.bar {
color: yellow;
}
}
================================================================================
`;