Sha256: 4a9b54795b6cccb6d4ae8d3ecc2c4ddfc67ce2334d012891f40e66c71fdebc6b
Contents?: true
Size: 605 Bytes
Versions: 23
Compression:
Stored size: 605 Bytes
Contents
import { testComponentSnapshotsWithFixtures } from '@theforeman/test'; import InhibitorInfoItem from '../InhibitorInfoItem'; const fixtures = { 'should render when inhibitor': { entry: { title: 'no title', severity: 'low', id: 5, preupgradeReportId: 7, flags: ['inhibitor'], }, }, 'should render when not inhibitor': { entry: { title: 'no title', severity: 'low', id: 5, preupgradeReportId: 7, flags: [], }, }, }; describe('InhibitorInfoItem', () => testComponentSnapshotsWithFixtures(InhibitorInfoItem, fixtures));
Version data entries
23 entries across 23 versions & 1 rubygems