Sha256: 22d2d51071f583169cf92fc401f1f18cac9f10940e20f82654c7fc4787b6fde4
Contents?: true
Size: 1.59 KB
Versions: 82
Compression:
Stored size: 1.59 KB
Contents
// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`AccountList reducer should handle INVENTORY_ACCOUNT_STATUS_POLLING 1`] = ` Object { "CloudConnectorStatus": Object { "id": 7, "task": Object { "id": 11, }, }, "accounts": Object { "Account1": Object { "generate_report_status": "running", "id": 1, "upload_report_status": "running", }, "Account2": Object { "generate_report_status": "failure", "id": 2, "upload_report_status": "unknown", }, "Account3": Object { "generate_report_status": "running", "id": 3, "upload_report_status": "success", }, }, "error": null, "pollingProcessID": 0, } `; exports[`AccountList reducer should handle INVENTORY_ACCOUNT_STATUS_POLLING_ERROR 1`] = ` Object { "accounts": Object {}, "error": "some-error", "pollingProcessID": 0, } `; exports[`AccountList reducer should handle INVENTORY_ACCOUNT_STATUS_POLLING_START 1`] = ` Object { "accounts": Object {}, "error": null, "pollingProcessID": 0, } `; exports[`AccountList reducer should handle INVENTORY_ACCOUNT_STATUS_POLLING_STOP 1`] = ` Object { "accounts": Object {}, "error": null, "pollingProcessID": 0, } `; exports[`AccountList reducer should handle INVENTORY_PROCESS_RESTART 1`] = ` Object { "accounts": Object { "user@redhat.com": Object { "upload_report_status": "Restarting...", }, }, "error": null, "pollingProcessID": 0, } `; exports[`AccountList reducer should return the initial state 1`] = ` Object { "accounts": Object {}, "error": null, "pollingProcessID": 0, } `;
Version data entries
82 entries across 82 versions & 1 rubygems