playwright/utils/testserver
Andrey Lushnikov 84ff20f193
test: fix test server on Node 15 (#4668)
This patch fixes a bug in our test server that manifests itself in
Node 15.

Context: Node 14 does not support Apple Silicon (and probably will not),
so we currently have to run tests on Node 15 on new macs.
2020-12-10 09:47:06 -08:00
..
cert.pem Initial commit 2019-11-19 10:58:15 -08:00
index.d.ts feat(screencast): use ffmpeg to produce webm in chromium (#3668) 2020-08-31 08:43:14 -07:00
index.js test: fix test server on Node 15 (#4668) 2020-12-10 09:47:06 -08:00
key.pem Initial commit 2019-11-19 10:58:15 -08:00
README.md docs: some syntax fixes (#2116) 2020-05-07 12:33:35 -07:00

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