import { screen } from '@testing-library/react'; import { render } from 'utils/testRenderer'; import { StrategyItemContainer as LegacyStrategyItemContainer } from './LegacyStrategyItemContainer'; import type { IFeatureStrategy } from 'interfaces/strategy'; import { StrategyItemContainer } from './StrategyItemContainer'; // todo: remove this test along with the flag flagOverviewRedesign test('(deprecated) should render strategy name, custom title and description', async () => { const strategy: IFeatureStrategy = { id: 'irrelevant', name: 'strategy name', title: 'custom title', constraints: [], parameters: {}, }; render( , ); expect(screen.getByText('strategy name')).toBeInTheDocument(); expect(screen.getByText('description')).toBeInTheDocument(); await screen.findByText('custom title'); // behind async flag }); test('should render strategy name, custom title and description', async () => { const strategy: IFeatureStrategy = { id: 'irrelevant', name: 'strategy name', title: 'custom title', constraints: [], parameters: {}, }; render( , ); expect(screen.getByText('strategy name')).toBeInTheDocument(); expect(screen.getByText('description')).toBeInTheDocument(); await screen.findByText('custom title'); // behind async flag });