import React from 'react' import { render } from '@testing-library/react' import { TripCard } from '../../../tripCard' import { tripCardConfig } from './CardsStackSection.example' import { CardsStackSection } from './index' describe('CardsStackSection', () => { it('should render TripCards', () => { const { container } = render( , ) expect(container.querySelector('ul').children).toHaveLength(6) }) })