570087ea94
* The testing tsconfig.json inherits from the base TS config. * A lot of type assertions have been inserted...a lot. * All testing utilities have migrated to TS. * text-diff is being replaced with diff for TS compatibility. * ProtocolError has been added to PuppeteerErrors and PuppeteerErrors is no longer a record (it's been frozen). * Fixes a small bug where null was an allowable media type in emulation (should be undefined). |
||
---|---|---|
.. | ||
src | ||
cert.pem | ||
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!');
})();