puppeteer/utils/testserver
Jack Franklin e3922ea1f3
chore: enforce consistent spacing around object curlys (#5700)
The codebase was incredibly inconsistent with the use of spacing around
curly braces, e.g.:

```
// this?
const a = {b: 1}
// or?
const a = { b: 1 }
```

This extended into import statements also. Google's styleguide is no
spacing, so we're going with that.
2020-04-21 10:40:04 +01:00
..
cert.pem test: split out tests for security details (#3996) 2019-02-13 11:35:49 -08:00
index.js chore: enforce consistent spacing around object curlys (#5700) 2020-04-21 10:40:04 +01:00
key.pem test: split out tests for security details (#3996) 2019-02-13 11:35:49 -08: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!');
})();