puppeteer/packages/testserver
dependabot[bot] 983e25ba28
chore(deps): Bump the dependencies group with 1 update (#11526)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-11 11:23:40 +01:00
..
src ci: fix Timeout Error in tests (#11301) 2023-11-06 11:20:04 +01: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(deps): Bump the dependencies group with 1 update (#11526) 2023-12-11 11:23:40 +01:00
README.md chore: initiate monorepo migration (#9022) 2022-09-29 10:08:55 +02:00
tsconfig.json chore: update dependencies (#10785) 2023-08-28 13:01:52 +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!');
})();