mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-11-04 09:32:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			196 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			196 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { defineConfig } from '@playwright/test';
 | 
						|
 | 
						|
export default defineConfig({
 | 
						|
	webServer: {
 | 
						|
		command: 'npm run build && npx http-server ../public -p 8181',
 | 
						|
		port: 8181
 | 
						|
	},
 | 
						|
	testDir: 'e2e'
 | 
						|
});
 |