Sha256: b12fd3c3131c8088b3676f93cb3d275ae2758c2ce0f9a932a8cd7f4410d11695

Contents?: true

Size: 946 Bytes

Versions: 1

Compression:

Stored size: 946 Bytes

Contents

// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Tree rendering render with props 1`] = `
<Col
  bsClass="col"
  componentClass="div"
  sm={9}
>
  <p>
    There are currently 
    3
     report files ready
  </p>
  <Tree
    canHide={true}
    content="Reports"
    open={true}
    visible={true}
  >
    <Tree
      canHide={false}
      content="file1"
      key="0"
      open={false}
      visible={true}
    />
    <Tree
      canHide={false}
      content="file2"
      key="1"
      open={false}
      visible={true}
    />
    <Tree
      canHide={false}
      content="file3"
      key="2"
      open={false}
      visible={true}
    />
  </Tree>
</Col>
`;

exports[`Tree rendering render without Props 1`] = `
<Col
  bsClass="col"
  componentClass="div"
  sm={9}
>
  <p>
    There are currently 
    0
     report files ready
  </p>
  <Tree
    canHide={true}
    content="Reports"
    open={true}
    visible={true}
  />
</Col>
`;

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
foreman_inventory_upload-1.0.0.beta2 webpack/ForemanInventoryUpload/Components/Tree/__tests__/__snapshots__/Tree.test.js.snap