puppeteer/packages/testserver
dependabot[bot] b6d30dd34a
chore(deps): Bump the dependencies group across 1 directory with 2 updates (#12359)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-29 08:22:10 +00:00
..
src test: rework test expectations (#11824) 2024-02-05 11:04:41 +00: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 across 1 directory with 2 updates (#12359) 2024-04-29 08:22:10 +00:00
README.md chore: initiate monorepo migration (#9022) 2022-09-29 10:08:55 +02:00
tsconfig.json chore(deps-dev): Bump the dev-dependencies group with 13 updates (#11908) 2024-02-14 18:20:12 +00:00
tsdoc.json chore: update license headers (#11563) 2024-01-03 10:11:33 +00: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!');
})();