2
0

variable-fix-layout.test.ts 296 B

12345678
  1. import { runFixedLayoutTest } from '../__mocks__/run-fixed-layout-test';
  2. import { fixLayout1 } from '../__mocks__/fixed-layout-specs';
  3. runFixedLayoutTest('Variable Fix Layout', fixLayout1, {
  4. isNodeChildrenPrivate: (node) =>
  5. // 只有循环是 private
  6. node.flowNodeType === 'loop',
  7. });