Sha256: 6237a42f8c3bc09bfa5b30f62df86e9460f5aad20f1bb154ed47e34bde6b1697

Contents?: true

Size: 1.16 KB

Versions: 1

Compression:

Stored size: 1.16 KB

Contents

export const preupgradeReports = [
  {
    hostId: 5,
    entries: [
      { title: 'Fix me!', severity: 'Too severe to talk about', id: 42 },
      { title: 'I am broken too', severity: 'medium', id: 43 },
    ],
  },
  {
    hostId: 6,
    entries: [
      { title: 'Octocat is not happy', severity: 'high', id: 44 },
      { title: 'Not enough credits', severity: 'low', id: 45 },
      { title: 'SELinux is turned off', severity: 'medium', id: 46 },
      { title: 'Root password is too short', severity: 'medium', id: 47 },
      {
        title: 'No chocolate chip cookies in cookie jar',
        severity: 'high',
        id: 49,
      },
    ],
  },
];

export const reportsWithRemediations = [
  {
    hostId: 5,
    entries: [
      {
        title: 'Fix me!',
        severity: 'Too severe to talk about',
        detail: { remediations: [{ type: 'hint' }] },
      },
      { title: 'I am broken too', severity: 'medium' },
    ],
  },
  {
    hostId: 6,
    entries: [
      {
        title: 'Octocat is not happy',
        severity: 'high',
        detail: { remediations: [{ type: 'command' }] },
      },
      { title: 'Not enough credits', severity: 'low' },
    ],
  },
];

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
foreman_leapp-0.0.6 webpack/components/PreupgradeReports/__tests__/PreupgradeReports.fixtures.js