Sha256: 6a458f39cdb9d79415e6a7b16da6c477c9b0e9fc0976fe97b7cfc63bc005efad

Contents?: true

Size: 452 Bytes

Versions: 3

Compression:

Stored size: 452 Bytes

Contents

import React from 'react';
import * as patternfly from '@patternfly/react-core';
import { testComponentSnapshotsWithFixtures } from '@theforeman/test';
import JobWizardPage from '../index';

jest.spyOn(patternfly, 'Wizard');
patternfly.Wizard.mockImplementation(props => <div>{props.navAriaLabel}</div>);

const fixtures = {
  'renders ': {},
};
describe('JobWizardPage rendering', () =>
  testComponentSnapshotsWithFixtures(JobWizardPage, fixtures));

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
foreman_remote_execution-4.5.1 webpack/JobWizard/__tests__/JobWizard.test.js
foreman_remote_execution-4.6.0 webpack/JobWizard/__tests__/JobWizard.test.js
foreman_remote_execution-4.5.0 webpack/JobWizard/__tests__/JobWizard.test.js