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