Sha256: 09e77c6f27e29d60806c633c669be4d7096594d5d69665eb9126985d83986a56

Contents?: true

Size: 1.51 KB

Versions: 3

Compression:

Stored size: 1.51 KB

Contents

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

exports[`NewTemplateSyncReducer should return initial state 1`] = `
Object {
  "error": "",
  "exportSettings": Array [],
  "importSettings": Array [],
  "loadingSettings": false,
}
`;

exports[`NewTemplateSyncReducer should start loading on setting values request 1`] = `
Object {
  "error": "",
  "exportSettings": Array [],
  "importSettings": Array [],
  "loadingSettings": true,
}
`;

exports[`NewTemplateSyncReducer should stop loading on setting values success 1`] = `
Object {
  "error": "",
  "exportSettings": Array [
    Object {
      "id": 47,
      "name": "filter",
      "settingsType": "string",
      "value": "",
    },
    Object {
      "id": 48,
      "name": "negate",
      "settingsType": "bool",
      "value": false,
    },
    Object {
      "id": 49,
      "name": "repo",
      "settingsType": "string",
      "value": "https://github.com/theforeman/community-templates.git",
    },
  ],
  "importSettings": Array [
    Object {
      "id": 45,
      "name": "associate",
      "selection": Array [
        Object {
          "label": "New",
          "value": "new",
        },
        Object {
          "label": "Never",
          "value": "never",
        },
        Object {
          "label": "Always",
          "value": "always",
        },
      ],
      "settingsType": "string",
      "value": "new",
    },
    Object {
      "id": 46,
      "name": "force",
      "settingsType": "bool",
      "value": false,
    },
  ],
  "loadingSettings": false,
}
`;

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
foreman_templates-7.0.4 webpack/components/NewTemplateSync/__tests__/__snapshots__/NewTemplateSyncReducer.test.js.snap
foreman_templates-7.0.3 webpack/components/NewTemplateSync/__tests__/__snapshots__/NewTemplateSyncReducer.test.js.snap
foreman_templates-7.0.2 webpack/components/NewTemplateSync/__tests__/__snapshots__/NewTemplateSyncReducer.test.js.snap