jsfmt.spec.js.snap 637 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`combinator.css 1`] = `
  3. -Option/root .public/section ~ .public/section:before {
  4. }
  5. .x .y {}
  6. .x > .y {}
  7. .x ~ .y {}
  8. .x + .y {}
  9. .x.y {}
  10. .x .y {}
  11. .x
  12. .y {}
  13. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  14. -Option/root .public/section ~ .public/section:before {
  15. }
  16. .x .y {
  17. }
  18. .x > .y {
  19. }
  20. .x ~ .y {
  21. }
  22. .x + .y {
  23. }
  24. .x.y {
  25. }
  26. .x .y {
  27. }
  28. .x .y {
  29. }
  30. `;
  31. exports[`leading.css 1`] = `
  32. a {
  33. > * {
  34. }
  35. &, > * {
  36. }
  37. + * {
  38. }
  39. }
  40. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  41. a {
  42. > * {
  43. }
  44. &,
  45. > * {
  46. }
  47. + * {
  48. }
  49. }
  50. `;