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

28 lines
681 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`important.css 1`] = `
====================================options=====================================
parsers: ["css"]
printWidth: 80
| printWidth
=====================================input======================================
div {
max-height: none !important;
}
.important {
.foo() !important;
}
=====================================output=====================================
div {
max-height: none !important;
}
.important {
.foo() !important;
}
================================================================================
`;