puppeteer/packages/testserver
2023-02-15 15:09:31 -08:00
..
src chore: Add EsLint rule import/order (#9685) 2023-02-15 15:09:31 -08:00
cert.pem chore: initiate monorepo migration (#9022) 2022-09-29 10:08:55 +02:00
CHANGELOG.md chore: release main (#9052) 2022-10-05 16:51:59 +02:00
key.pem chore: initiate monorepo migration (#9022) 2022-09-29 10:08:55 +02:00
LICENSE chore: initiate monorepo migration (#9022) 2022-09-29 10:08:55 +02:00
package.json chore: cleanup wireit scripts (#9662) 2023-02-13 10:22:43 -08:00
README.md chore: initiate monorepo migration (#9022) 2022-09-29 10:08:55 +02:00
tsconfig.json chore: initiate monorepo migration (#9022) 2022-09-29 10:08:55 +02:00

TestServer

This test server is used internally by Puppeteer to test Puppeteer 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!');
})();