playwright/utils/testserver
Dmitry Gozman 622c1a8da6
tests: run browserType.connect tests against launchServer and run-server (#19340)
2022-12-07 14:36:32 -08:00
..
README.md docs: some syntax fixes (#2116) 2020-05-07 12:33:35 -07:00
cert.pem
index.ts tests: run browserType.connect tests against launchServer and run-server (#19340) 2022-12-07 14:36:32 -08:00
key.pem
run_static_server.js chore: repair run_static_server.js (#6298) 2021-04-23 11:42:54 -07:00

README.md

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