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