mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-10-31 07:57:39 +03:00 
			
		
		
		
	* fix(deps): update all non-major dependencies * Update snapshots * Update snpashots --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
		
			
				
	
	
		
			131 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			131 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| // Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
 | |
| 
 | |
| exports[`Tabs renders correctly 1`] = `
 | |
| <div
 | |
|   class="css-1q9755x"
 | |
| >
 | |
|   <div
 | |
|     class="css-1rbphu7"
 | |
|   >
 | |
|     <div>
 | |
|       <button
 | |
|         value="Tab1"
 | |
|       >
 | |
|         Tab1
 | |
|       </button>
 | |
|       <button
 | |
|         value="Tab2"
 | |
|       >
 | |
|         Tab2
 | |
|       </button>
 | |
|       <button
 | |
|         value="Tab3"
 | |
|       >
 | |
|         Tab3
 | |
|       </button>
 | |
|     </div>
 | |
|   </div>
 | |
| </div>
 | |
| `;
 | |
| 
 | |
| exports[`Tabs renders tabs without inner components 1`] = `
 | |
| <div
 | |
|   class="css-1q9755x"
 | |
| >
 | |
|   <div
 | |
|     class="css-1rbphu7"
 | |
|   >
 | |
|     <div>
 | |
|       <button
 | |
|         value="1"
 | |
|       >
 | |
|         Tab1
 | |
|       </button>
 | |
|       <button
 | |
|         value="2"
 | |
|       >
 | |
|         Tab2
 | |
|       </button>
 | |
|       <button
 | |
|         value="3"
 | |
|       >
 | |
|         Tab3
 | |
|       </button>
 | |
|       <button
 | |
|         value="4"
 | |
|       >
 | |
|         Tab4
 | |
|       </button>
 | |
|       <button
 | |
|         data-selected="true"
 | |
|         value="5"
 | |
|       >
 | |
|         Tab5
 | |
|       </button>
 | |
|       <button
 | |
|         value="6"
 | |
|       >
 | |
|         Tab6
 | |
|       </button>
 | |
|       <button
 | |
|         value="7"
 | |
|       >
 | |
|         Tab7
 | |
|       </button>
 | |
|       <button
 | |
|         value="8"
 | |
|       >
 | |
|         Tab8
 | |
|       </button>
 | |
|       <button
 | |
|         value="9"
 | |
|       >
 | |
|         Tab9
 | |
|       </button>
 | |
|       <button
 | |
|         value="10"
 | |
|       >
 | |
|         Tab10
 | |
|       </button>
 | |
|     </div>
 | |
|   </div>
 | |
| </div>
 | |
| `;
 | |
| 
 | |
| exports[`Tabs renders with props 1`] = `
 | |
| <div
 | |
|   class="css-1q9755x"
 | |
| >
 | |
|   <div
 | |
|     class="css-1rbphu7"
 | |
|   >
 | |
|     <div>
 | |
|       <button
 | |
|         value="Tab1"
 | |
|       >
 | |
|         Tab1
 | |
|       </button>
 | |
|       <button
 | |
|         data-selected="true"
 | |
|         value="Tab2"
 | |
|       >
 | |
|         Tab2
 | |
|       </button>
 | |
|       <button
 | |
|         value="Tab3"
 | |
|       >
 | |
|         Tab3
 | |
|       </button>
 | |
|     </div>
 | |
|   </div>
 | |
|   <div>
 | |
|     <div
 | |
|       style="display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; font-size: 22px;"
 | |
|     >
 | |
|       Selected 
 | |
|       Tab2
 | |
|     </div>
 | |
|   </div>
 | |
| </div>
 | |
| `;
 |