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

203 lines
2.5 KiB
Plaintext
Raw Normal View History

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`selectors.css 1`] = `
.a,.b,.c {}
.r { &, &:hover {} }
@media (min-width: 0px) {
.a,.b,:not(asdasldaskdhjkashdahsdkjahskdjhakj,asdasldaskdhjkashdahsdkjahskdjhakj) {color: red}
}
.asdasldaskdhjkashdahsdkjahskdjhakjsdkjahsdhkas .asdasldaskdhjkashdahsdkjahskdjhakjsdkjahsdhkas,
.asdasldaskdhjkashdahsdkjahskdjhakjsdkjahsdhkas .asdasldaskdhjkashdahsdkjahskdjhakjsdkjahsdhkas {}
.parent.child {}
.parent .child {}
.parent .child {}
.parent {
.child-one {}
.child-two {}
}
.parent{
.child-one {}
.child-two {}
}
.parent {
.child-one {}
.child-two {}
}
.parent>.child {}
.parent > .child {}
.parent > .child {}
.parent>{
.child-one {}
.child-two {}
}
.parent > {
.child-one {}
.child-two {}
}
.parent > {
.child-one {}
.child-two {}
}
.parent+.child {}
.parent + .child {}
.parent + .child {}
.parent+{
.child-one {}
.child-two {}
}
.parent + {
.child-one {}
.child-two {}
}
.parent + {
.child-one {}
.child-two {}
}
.parent~.child {}
.parent ~ .child {}
.parent ~ .child {}
.parent~{
.child-one {}
.child-two {}
}
.parent ~ {
.child-one {}
.child-two {}
}
.parent ~ {
.child-one {}
.child-two {}
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.a,
.b,
.c {
}
.r {
&,
&:hover {
}
}
@media (min-width: 0px) {
.a,
.b,
:not(asdasldaskdhjkashdahsdkjahskdjhakj, asdasldaskdhjkashdahsdkjahskdjhakj) {
color: red;
}
}
.asdasldaskdhjkashdahsdkjahskdjhakjsdkjahsdhkas
.asdasldaskdhjkashdahsdkjahskdjhakjsdkjahsdhkas,
.asdasldaskdhjkashdahsdkjahskdjhakjsdkjahsdhkas
.asdasldaskdhjkashdahsdkjahskdjhakjsdkjahsdhkas {
}
.parent.child {
}
.parent .child {
}
.parent .child {
}
.parent {
.child-one {
}
.child-two {
}
}
.parent {
.child-one {
}
.child-two {
}
}
.parent {
.child-one {
}
.child-two {
}
}
.parent > .child {
}
.parent > .child {
}
.parent > .child {
}
.parent > {
.child-one {
}
.child-two {
}
}
.parent > {
.child-one {
}
.child-two {
}
}
.parent > {
.child-one {
}
.child-two {
}
}
.parent + .child {
}
.parent + .child {
}
.parent + .child {
}
.parent + {
.child-one {
}
.child-two {
}
}
.parent + {
.child-one {
}
.child-two {
}
}
.parent + {
.child-one {
}
.child-two {
}
}
.parent ~ .child {
}
.parent ~ .child {
}
.parent ~ .child {
}
.parent ~ {
.child-one {
}
.child-two {
}
}
.parent ~ {
.child-one {
}
.child-two {
}
}
.parent ~ {
.child-one {
}
.child-two {
}
}
`;