puppeteer/utils/testserver
Michal TOMA a17bd89fb9 feat: add securityDetails.subjectAlternativeNames() #5628 (#5881)
Co-authored-by: Michal TOMA <michaltoma2205@gmail.com>
Co-authored-by: Alex Rudenko <alexrudenko@chromium.org>

Fixes #5625. Closes #5628.
2020-05-18 12:59:57 +02:00
..
cert.pem feat: add securityDetails.subjectAlternativeNames() #5628 (#5881) 2020-05-18 12:59:57 +02:00
index.js chore: add Prettier (#5825) 2020-05-07 12:54:55 +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: update URLs (#5185) 2019-11-26 13:12:25 +01:00
README.md chore(testserver): prepare test server (#3294) 2018-09-24 12:46:39 -07: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!');
})();