mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
3d1dd519ac
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
---|---|---|
.. | ||
src | ||
cert.pem | ||
CHANGELOG.md | ||
key.pem | ||
LICENSE | ||
package.json | ||
README.md | ||
tsconfig.json |
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!');
})();