Stratal API Reference
    Preparing search index...

    Class TestHttpClient

    TestHttpClient

    Fluent HTTP client for making test requests.

    const response = await module.http
    .forHost('example.com')
    .post('/api/v1/users')
    .withBody({ name: 'Test' })
    .send()

    response.assertCreated()
    Index

    Constructors

    Methods

    post