playwright/utils/testserver
2022-03-18 09:00:52 -07:00
..
cert.pem
index.d.ts fix: support connectOverCDP over https (#8703) 2021-09-03 17:52:22 -07:00
index.js feat(chromium): large file uploads (#12860) 2022-03-18 09:00:52 -07:00
key.pem
README.md
run_static_server.js

TestServer

This test server is used internally by Playwright to test Playwright itself.

Example

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!');
})();