Andrey Lushnikov 4fcc63f2e1 chore: remove usages of mime module from infrastructure
Follow-up to 4d84e35096f8e63b19aebcd8d0b8af48dc3fb2b6
2020-02-10 11:26:08 -08:00
..
2019-11-19 10:58:15 -08:00
2019-11-19 10:58:15 -08:00
2020-01-24 16:15:41 -08: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!');
})();