playwright/utils/testserver
2020-01-03 15:34:51 -08:00
..
cert.pem Initial commit 2019-11-19 10:58:15 -08:00
index.js test: make network cache test pass on all browsers (#374) 2020-01-03 15:34:51 -08:00
key.pem Initial commit 2019-11-19 10:58:15 -08:00
LICENSE Initial commit 2019-11-19 10:58:15 -08:00
package.json Initial commit 2019-11-19 10:58:15 -08:00
README.md Initial commit 2019-11-19 10:58:15 -08:00

TestServer

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

Example

const {TestServer} = require('@pptr/testserver');

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