mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-10-30 15:37:31 +03:00 
			
		
		
		
	* chore(deps): update dependency prettier to v3 * Format --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
		
			
				
	
	
		
			35 lines
		
	
	
		
			940 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			940 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import React from 'react';
 | |
| import { render, screen } from '@testing-library/react';
 | |
| import userEvent from '@testing-library/user-event';
 | |
| import { SegmentedControl } from '../src';
 | |
| 
 | |
| describe('SegmentedControl', function () {
 | |
|   it('renders correctly', () => {
 | |
|     const { container } = render(
 | |
|       <SegmentedControl
 | |
|         values={['Button1', 'Button2', 'Button3']}
 | |
|         selected="Button1"
 | |
|         disabled={false}
 | |
|         onClick={() => {
 | |
|           // noop
 | |
|         }}
 | |
|       />,
 | |
|     );
 | |
|     expect(container.firstChild).toMatchSnapshot();
 | |
|   });
 | |
|   it('should handle the click event', async () => {
 | |
|     const onClick = jest.fn();
 | |
|     render(
 | |
|       <SegmentedControl
 | |
|         values={['Button1', 'Button2', 'Button3']}
 | |
|         selected="Button1"
 | |
|         disabled={false}
 | |
|         onClick={onClick}
 | |
|       />,
 | |
|     );
 | |
| 
 | |
|     await userEvent.click(screen.getByRole('button', { name: 'Button1' }));
 | |
|     expect(onClick).toHaveBeenCalled();
 | |
|   });
 | |
| });
 |