Sha256: 2e41be83ce4e7416c7ebb5b45c86a20451721b56048596f18a7f3d2999148830

Contents?: true

Size: 669 Bytes

Versions: 6

Compression:

Stored size: 669 Bytes

Contents

export const HostItemFixtures = {
  renders: {
    name: 'Host1',
    link: '/host1',
    status: 'success',
    actions: [],
  },
};

export const HostStatusFixtures = {
  renders: {
    status: 'success',
  },
};

export const TargetingHostsFixtures = {
  renders: {
    status: '',
    items: [
      {
        name: 'host',
        link: '/link',
        status: 'success',
        actions: [],
      },
    ],
  },
  'renders with error': {
    status: 'ERROR',
    items: [
      {
        name: 'host',
        link: '/link',
        status: 'success',
        actions: [],
      },
    ],
  },
  'renders with loading': {
    status: '',
    items: [],
  },
};

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
foreman_remote_execution-3.3.7 webpack/react_app/components/TargetingHosts/__tests__/fixtures.js
foreman_remote_execution-3.3.6 webpack/react_app/components/TargetingHosts/__tests__/fixtures.js
foreman_remote_execution-3.3.5 webpack/react_app/components/TargetingHosts/__tests__/fixtures.js
foreman_remote_execution-3.3.4 webpack/react_app/components/TargetingHosts/__tests__/fixtures.js
foreman_remote_execution-3.3.3 webpack/react_app/components/TargetingHosts/__tests__/fixtures.js
foreman_remote_execution-3.3.2 webpack/react_app/components/TargetingHosts/__tests__/fixtures.js