The base url that all requests should be made to
Optionally, a configuration object customizing the behavior of the request builder
a function that can be used to make and parse HTTP requests
const request = microtest('http://localhost:9999')
const response = await request(ctx => ctx.get('/').query({ foo: 'bar' })).status(200).json()
expect(response.message).toEqual('something from my api')
Generated using TypeDoc
Create a microtest runner. This runner can be used to make requests, parse the results, and make assertions about the response.