Sha256: 171fb421ac1c0932a10d16e8aad279d0c49496de92266028487c8d4858f40b21
Contents?: true
Size: 735 Bytes
Versions: 177
Compression:
Stored size: 735 Bytes
Contents
// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`OrganizationProducts reducer should handle ORGANIZATION_PRODUCTS_FAILURE 1`] = ` Object { "error": [Error: some error], "loading": false, "results": Array [], } `; exports[`OrganizationProducts reducer should handle ORGANIZATION_PRODUCTS_REQUEST 1`] = ` Object { "error": null, "loading": true, "results": Array [], } `; exports[`OrganizationProducts reducer should handle ORGANIZATION_PRODUCTS_SUCCESS 1`] = ` Object { "error": null, "loading": false, "results": Array [ "some", "results", ], } `; exports[`OrganizationProducts reducer should return the initial state 1`] = ` Object { "error": null, "loading": false, "results": Array [], } `;
Version data entries
177 entries across 177 versions & 1 rubygems