Sha256: a4019fb1a62bbaa3fffb5cf935e8853e44ff45bbe278ee518d53ff26b4f70b8d

Contents?: true

Size: 1.88 KB

Versions: 62

Compression:

Stored size: 1.88 KB

Contents

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

exports[`ActionButton snapshot test render with canEdit false 1`] = `
<span>
  <ActionButtons
    buttons={Array []}
  />
</span>
`;

exports[`ActionButton snapshot test render with cancellable false props 1`] = `
<span
  title="Task cannot be canceled"
>
  <ActionButtons
    buttons={
      Array [
        Object {
          "action": Object {
            "disabled": true,
            "id": "task-cancel-button-id",
            "onClick": [Function],
          },
          "title": "Cancel",
        },
      ]
    }
  />
</span>
`;

exports[`ActionButton snapshot test render with cancellable true props 1`] = `
<span>
  <ActionButtons
    buttons={
      Array [
        Object {
          "action": Object {
            "disabled": false,
            "id": "task-cancel-button-id",
            "onClick": [Function],
          },
          "title": "Cancel",
        },
      ]
    }
  />
</span>
`;

exports[`ActionButton snapshot test render with resumable true props 1`] = `
<span>
  <ActionButtons
    buttons={
      Array [
        Object {
          "action": Object {
            "disabled": false,
            "id": "task-resume-button-id",
            "onClick": [Function],
          },
          "title": "Resume",
        },
      ]
    }
  />
</span>
`;

exports[`ActionButton snapshot test render with stoppable and cancellable true props 1`] = `
<span>
  <ActionButtons
    buttons={
      Array [
        Object {
          "action": Object {
            "disabled": false,
            "id": "task-cancel-button-id",
            "onClick": [Function],
          },
          "title": "Cancel",
        },
        Object {
          "action": Object {
            "disabled": false,
            "id": "task-force-cancel-button-id",
            "onClick": [Function],
          },
          "title": "Force Cancel",
        },
      ]
    }
  />
</span>
`;

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
foreman-tasks-10.0.2 webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap
foreman-tasks-10.0.1 webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap
foreman-tasks-10.0.0 webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap
foreman-tasks-9.2.3 webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap
foreman-tasks-9.2.2 webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap
foreman-tasks-9.2.1 webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap
foreman-tasks-9.2.0 webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap
foreman-tasks-9.1.1 webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap
foreman-tasks-9.0.4 webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap
foreman-tasks-9.1.0 webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap
foreman-tasks-9.0.2 webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap
foreman-tasks-9.0.1 webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap
foreman-tasks-8.3.3 webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap
foreman-tasks-9.0.0 webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap
foreman-tasks-8.2.1 webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap
foreman-tasks-8.1.4 webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap
foreman-tasks-8.3.2 webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap
foreman-tasks-8.3.1 webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap
foreman-tasks-8.1.3 webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap
foreman-tasks-8.3.0 webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap