
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
chai-superagent
Advanced tools
superagent integration testing with Chai assertions.
chai-http
expect
and should
interfaces$ npm install chai-superagent superagent
Use this plugin as you would all other Chai plugins. Notice the function call - it accepts an optional parameter { strict }: { strict?: boolean }
. When strict
is true, the assertions will assert that the object being tested is an instance of superagent
Request
, Response
or Agent
types. It defaults to true
.
import { use } from 'chai';
import superagent from 'chai-superagent';
use(superagent());
Use superagent
as you normally would, and test
the responses using the assertions provided in this library.
import request from 'superagent';
request
.get('http://localhost:8000/foo')
.then(res => expect(res).to.have.status(200));
The Chai HTTP module provides a number of assertions
for the expect
and should
interfaces.
Assert that a response has a supplied status.
expect(res).to.have.status(200);
Assert that a Response
or Request
object has a header.
If a value is provided, equality to value will be asserted.
You may also pass a regular expression to check.
Note: When running in a web browser, the same-origin policy only allows Chai HTTP to read certain headers, which can cause assertions to fail.
expect(req).to.have.header('x-api-key');
expect(req).to.have.header('content-type', 'text/plain');
expect(req).to.have.header('content-type', /^text/);
Assert that a Response
or Request
object has headers.
Note: When running in a web browser, the same-origin policy only allows Chai HTTP to read certain headers, which can cause assertions to fail.
expect(req).to.have.headers;
Assert that a Response
or Request
object has a given content-type.
expect(req).to.be.json;
expect(req).to.be.html;
expect(req).to.be.text;
Assert that a Response
or Request
object has a given charset.
expect(req).to.have.charset('utf-8');
Assert that a Response
object has a redirect status code.
expect(res).to.redirect;
expect(res).to.not.redirect;
Assert that a Response
object redirects to the supplied location.
expect(res).to.redirectTo('http://example.com');
expect(res).to.redirectTo(/^\/search\/results\?orderBy=desc$/);
Assert that a Request
object has a query string parameter with a given
key, (optionally) equal to value
expect(req).to.have.param('orderby');
expect(req).to.have.param('orderby', 'date');
expect(req).to.not.have.param('limit');
Assert that a Request
or Response
object has a cookie header with a
given key, (optionally) equal to value
expect(req).to.have.cookie('session_id');
expect(req).to.have.cookie('session_id', '1234');
expect(req).to.not.have.cookie('PHPSESSID');
expect(res).to.have.cookie('session_id');
expect(res).to.have.cookie('session_id', '1234');
expect(res).to.not.have.cookie('PHPSESSID');
See the LICENSE file for license rights and limitations (MIT).
FAQs
Extend Chai Assertion library with tests for superagent requests
The npm package chai-superagent receives a total of 463 weekly downloads. As such, chai-superagent popularity was classified as not popular.
We found that chai-superagent demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.