diff --git a/frontend/src/component/playground/Playground/AdvancedPlaygroundResultsTable/AdvancedPlaygroundResultsTable.test.tsx b/frontend/src/component/playground/Playground/AdvancedPlaygroundResultsTable/AdvancedPlaygroundResultsTable.test.tsx new file mode 100644 index 0000000000..5c1b696880 --- /dev/null +++ b/frontend/src/component/playground/Playground/AdvancedPlaygroundResultsTable/AdvancedPlaygroundResultsTable.test.tsx @@ -0,0 +1,107 @@ +import { screen } from '@testing-library/react'; +import { render } from 'utils/testRenderer'; +import { UIProviderContainer } from 'component/providers/UIProvider/UIProviderContainer'; +import { AdvancedPlaygroundResultsTable } from './AdvancedPlaygroundResultsTable'; + +test('should render advanced playground table', async () => { + render( + + + + ); + + expect(screen.getByText('Infinite')).toBeInTheDocument(); + expect(screen.getByText('ChangeReqs')).toBeInTheDocument(); + expect(screen.getByText('Development')).toBeInTheDocument(); + expect(screen.getByText('Production')).toBeInTheDocument(); +});