2
0

variable-fix-layout-group.test.ts 675 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. import { runFixedLayoutTest } from '../__mocks__/run-fixed-layout-test';
  2. runFixedLayoutTest(
  3. 'Variable Fix Layout Group',
  4. {
  5. nodes: [
  6. {
  7. id: 'start_0',
  8. type: 'start',
  9. meta: {
  10. isStart: true,
  11. },
  12. blocks: [],
  13. },
  14. {
  15. id: '$group_test$',
  16. type: 'block',
  17. blocks: [
  18. {
  19. id: 'node_0',
  20. type: 'noop',
  21. blocks: [],
  22. },
  23. {
  24. id: 'node_1',
  25. type: 'noop',
  26. blocks: [],
  27. },
  28. ],
  29. },
  30. {
  31. id: 'end_0',
  32. type: 'end',
  33. blocks: [],
  34. },
  35. ],
  36. },
  37. {}
  38. );