no-unnecessary-blocks.test.js.snap 859 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. exports[`test no uncessessary blocks should be added 1`] = `
  2. Object {
  3. "line": 0,
  4. "nodes": Array [
  5. Object {
  6. "attributeBlocks": Array [],
  7. "attrs": Array [],
  8. "block": Object {
  9. "line": 2,
  10. "nodes": Array [
  11. Object {
  12. "column": 5,
  13. "line": 3,
  14. "type": "Text",
  15. "val": "Hello",
  16. },
  17. Object {
  18. "column": 1,
  19. "line": 4,
  20. "type": "Text",
  21. "val": "
  22. ",
  23. },
  24. Object {
  25. "column": 5,
  26. "line": 4,
  27. "type": "Text",
  28. "val": "World",
  29. },
  30. ],
  31. "type": "Block",
  32. },
  33. "column": 1,
  34. "isInline": false,
  35. "line": 2,
  36. "name": "div",
  37. "selfClosing": false,
  38. "type": "Tag",
  39. },
  40. ],
  41. "type": "Block",
  42. }
  43. `;