a17bd89fb9
Co-authored-by: Michal TOMA <michaltoma2205@gmail.com> Co-authored-by: Alex Rudenko <alexrudenko@chromium.org> Fixes #5625. Closes #5628. |
||
---|---|---|
.. | ||
cert.pem | ||
index.js | ||
key.pem | ||
LICENSE | ||
package.json | ||
README.md |
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!');
})();