mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			442 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			442 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
# TestServer
 | 
						|
 | 
						|
This test server is used internally by Playwright to test Playwright itself.
 | 
						|
 | 
						|
### Example
 | 
						|
 | 
						|
```js
 | 
						|
const {TestServer} = require('.');
 | 
						|
 | 
						|
(async () => {
 | 
						|
  const httpServer = await TestServer.create(__dirname, 8000);
 | 
						|
  const httpsServer = await TestServer.createHTTPS(__dirname, 8001);
 | 
						|
  httpServer.setRoute('/hello', (req, res) => {
 | 
						|
    res.end('Hello, world!');
 | 
						|
  });
 | 
						|
  console.log('HTTP and HTTPS servers are running!');
 | 
						|
})();
 | 
						|
```
 |