// import React from 'react';
// import {View} from 'react-native';
// import {render} from '@shared/testingLibrary';

// import {CardContainer, BadgeVariant} from './index';

describe('CardContainer component', () => {
  it('force', () => {
    expect(true).toBe(true);
  });
  // it('Check if footer is rendered', () => {
  //   const footer = {
  //     primaryText: 'Primary Button',
  //     primaryVariant: 'primary' as const,
  //   };
  //   const {getByText} = render(
  //     <CardContainer footer={footer}>
  //       <View />
  //     </CardContainer>,
  //   );
  //   expect(getByText('Primary Button')).toBeTruthy();
  // });

  // it('Check if badge is rendered', () => {
  //   const badge = {
  //     variant: 'error' as BadgeVariant,
  //     text: 'Extra data',
  //     show: true,
  //   };
  //   const {getByText} = render(
  //     <CardContainer badge={badge}>
  //       <View />
  //     </CardContainer>,
  //   );
  //   expect(getByText('Extra data')).toBeTruthy();
  // });

  // it('Check if badge and footer is rendered', () => {
  //   const footer = {
  //     primaryText: 'Primary Button',
  //     primaryVariant: 'primary' as const,
  //   };
  //   const badge = {
  //     variant: 'error' as BadgeVariant,
  //     text: 'Extra data',
  //     show: true,
  //   };
  //   const {getByText} = render(
  //     <CardContainer badge={badge} footer={footer}>
  //       <View />
  //     </CardContainer>,
  //   );
  //   expect(getByText('Extra data')).toBeTruthy();
  //   expect(getByText('Primary Button')).toBeTruthy();
  // });

  // it('Check if footer with primary and secondary buttons is rendered', () => {
  //   const footer = {
  //     primaryText: 'Primary Button',
  //     primaryVariant: 'primary' as const,
  //     secondaryText: 'Secondary Button',
  //     secondaryVariant: 'tertiary' as const,
  //   };
  //   const {getByText} = render(
  //     <CardContainer footer={footer}>
  //       <View />
  //     </CardContainer>,
  //   );
  //   expect(getByText('Primary Button')).toBeTruthy();
  //   expect(getByText('Secondary Button')).toBeTruthy();
  // });
});
