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