Sha256: 5c20ca1d5ba5ad77f06af06531d8deb2f72f799b52f948b92e5594153050419d

Contents?: true

Size: 738 Bytes

Versions: 186

Compression:

Stored size: 738 Bytes

Contents

import React from 'react';
import TestRenderer from 'react-test-renderer';
import { ListView } from 'patternfly-react';
import SubscriptionDetailProductContent from '../SubscriptionDetailProductContent';
import { availableContent, product } from '../../../Products/__tests__/products.fixtures.js';

describe('subscription detail product content page', () => {
  it('renders correctly', () => {
    const testRenderer = TestRenderer
      .create(<SubscriptionDetailProductContent
        productContent={{ results: [product([availableContent])] }}
      />);
    const testInstance = testRenderer.root;

    expect(testRenderer.toJSON()).toMatchSnapshot();
    expect(testInstance.findAllByType(ListView.Item)).toHaveLength(1);
  });
});

Version data entries

186 entries across 186 versions & 1 rubygems

Version Path
katello-4.12.0.rc3 webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProductContent.test.js
katello-4.12.0.rc2 webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProductContent.test.js
katello-4.12.0.rc1 webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProductContent.test.js
katello-4.11.1 webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProductContent.test.js
katello-4.11.0 webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProductContent.test.js
katello-4.11.0.rc2 webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProductContent.test.js
katello-4.11.0.rc1 webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProductContent.test.js
katello-4.10.0 webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProductContent.test.js
katello-4.9.2 webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProductContent.test.js
katello-4.10.0.rc2 webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProductContent.test.js
katello-4.10.0.rc1 webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProductContent.test.js
katello-4.8.4 webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProductContent.test.js
katello-4.9.1 webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProductContent.test.js
katello-4.8.3 webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProductContent.test.js
katello-4.9.0 webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProductContent.test.js
katello-4.7.6 webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProductContent.test.js
katello-4.8.2 webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProductContent.test.js
katello-4.9.0.rc2 webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProductContent.test.js
katello-4.9.0.rc1 webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProductContent.test.js
katello-4.8.1 webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailProductContent.test.js