puppeteer/utils/testserver
2022-07-01 11:52:39 +00:00
..
src chore: use Google's TS style guide's format config (#8542) 2022-06-22 15:25:44 +02:00
cert.pem feat: add securityDetails.subjectAlternativeNames() #5628 (#5881) 2020-05-18 12:59:57 +02:00
key.pem feat: add securityDetails.subjectAlternativeNames() #5628 (#5881) 2020-05-18 12:59:57 +02:00
LICENSE chore(testserver): prepare test server (#3294) 2018-09-24 12:46:39 -07:00
package.json chore: use composite builds for tests (#8522) 2022-06-15 12:05:25 +02:00
README.md feat: add documentation (#8593) 2022-07-01 11:52:39 +00:00
tsconfig.json chore: use strict typing in tests (#8524) 2022-06-15 12:09:22 +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!');
})();