mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-04 05:28:59 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			574 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			574 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { defineConfig, devices } from '@playwright/test';
 | 
						|
 | 
						|
require('dotenv').config({
 | 
						|
    path: __dirname + "/" + ".env"
 | 
						|
});
 | 
						|
 | 
						|
 | 
						|
/**
 | 
						|
 * 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',
 | 
						|
  },
 | 
						|
  projects: [
 | 
						|
    {
 | 
						|
      name: "chromium",
 | 
						|
      use: { ...devices["Desktop Chrome"] },
 | 
						|
    }
 | 
						|
  ],
 | 
						|
});
 |