mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			337 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			337 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// @ts-check
 | 
						|
const path = require('path')
 | 
						|
 | 
						|
/**
 | 
						|
 * @see https://playwright.dev/docs/test-configuration
 | 
						|
 * @type{import('@playwright/test').PlaywrightTestConfig}
 | 
						|
 */
 | 
						|
const config = {
 | 
						|
  webServer: {
 | 
						|
    port: 9900,
 | 
						|
    command: 'npm run start',
 | 
						|
  },
 | 
						|
  // Test directory
 | 
						|
  testDir: path.join(__dirname, 'tests'),
 | 
						|
};
 | 
						|
module.exports = config;
 |