mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
c0c7878adc
This PR starts the monorepo migrations as per https://github.com/puppeteer/puppeteer/issues/8922. To scope migrations, we are only moving the `testserver` into a separate package. Further migrations will come later.
19 lines
454 B
Markdown
19 lines
454 B
Markdown
# TestServer
|
|
|
|
This test server is used internally by Puppeteer to test Puppeteer itself.
|
|
|
|
### Example
|
|
|
|
```ts
|
|
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!');
|
|
})();
|
|
```
|