Sha256: 4c8d0333a639a20809ee78783b744c17885f38705c92fcca4e94b30ac67f8dfc

Contents?: true

Size: 1.39 KB

Versions: 2

Compression:

Stored size: 1.39 KB

Contents

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

exports[`TargetingHosts renders 1`] = `
<LoadingState
  additionalClasses=""
  loading={false}
  loadingText="Loading"
  size="lg"
  timeout={300}
>
  <div>
    <table
      className="table table-bordered table-striped table-hover"
    >
      <thead>
        <tr>
          <th>
            Host
          </th>
          <th>
            Status
          </th>
          <th>
            Actions
          </th>
        </tr>
      </thead>
      <tbody>
        <HostItem
          actions={Array []}
          key="host"
          link="/link"
          name="host"
          status="success"
        />
      </tbody>
    </table>
  </div>
</LoadingState>
`;

exports[`TargetingHosts renders with error 1`] = `
<Alert
  className=""
  onDismiss={null}
  type="error"
>
  There was an error while updating the status, try refreshing the page.
</Alert>
`;

exports[`TargetingHosts renders with loading 1`] = `
<LoadingState
  additionalClasses=""
  loading={false}
  loadingText="Loading"
  size="lg"
  timeout={300}
>
  <div>
    <table
      className="table table-bordered table-striped table-hover"
    >
      <thead>
        <tr>
          <th>
            Host
          </th>
          <th>
            Status
          </th>
          <th>
            Actions
          </th>
        </tr>
      </thead>
      <tbody />
    </table>
  </div>
</LoadingState>
`;

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
foreman_remote_execution-3.3.7 webpack/react_app/components/TargetingHosts/__tests__/__snapshots__/TargetingHosts.test.js.snap
foreman_remote_execution-3.3.6 webpack/react_app/components/TargetingHosts/__tests__/__snapshots__/TargetingHosts.test.js.snap