@japa/api-client
v2.0.4
Published
Browser and API testing client for Japa. Built on top of Playwright
Downloads
80,488
Readme
@japa/client
API client to test endpoints over HTTP. Uses superagent under the hood
The API client plugin of Japa makes it super simple to test your API endpoints over HTTP. You can use it to test any HTTP endpoint that returns JSON, XML, HTML, or even plain text.
It has out of the box support for:
- Multiple content types including
application/json
,application/x-www-form-urlencoded
andmultipart
. - Ability to upload files.
- Read and write cookies with the option to register custom cookies serializer.
- Lifecycle hooks. A great use-case of hooks is to persist and load session data during a request.
- All other common abilities like sending headers, query-string, and following redirects.
- Support for registering custom body serializers and parsers.
Complete API documentation
Installation
Install the package from the npm registry as follows:
npm i @japa/api-client
yarn add @japa/api-client
Usage
You can use the assertion package with the @japa/runner
as follows.
import { apiClient } from '@japa/api-client'
import { configure } from '@japa/runner'
configure({
plugins: [apiClient({ baseURL: 'http://localhost:3333' })]
})
Once done, you will be able to access the client
property from the test context.
test('test title', ({ client }) => {
const response = await client.get('/')
})