| 
									
										
										
										
											2025-06-21 14:23:47 +03:00
										 |  |  | import { defineConfig, devices } from '@playwright/test'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * See https://playwright.dev/docs/test-configuration.
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | export default defineConfig({ | 
					
						
							|  |  |  |   /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ | 
					
						
							|  |  |  |   use: { | 
					
						
							|  |  |  |     /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ | 
					
						
							|  |  |  |     trace: 'on-first-retry', | 
					
						
							|  |  |  |   }, | 
					
						
							| 
									
										
										
										
											2025-09-03 20:08:17 +03:00
										 |  |  |   testDir: "e2e", | 
					
						
							|  |  |  |   outputDir: "test-output", | 
					
						
							| 
									
										
										
										
											2025-06-21 14:23:47 +03:00
										 |  |  |   projects: [ | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |       name: "chromium", | 
					
						
							|  |  |  |       use: { ...devices["Desktop Chrome"] }, | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   ], | 
					
						
							|  |  |  | }); |