Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

chai-pretty-expect

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chai-pretty-expect

Will JSON.stringify and pretty-print objects passed as 2nd, 3rd, ... parameter to expect, for nice test output

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
72
decreased by-64.36%
Maintainers
1
Weekly downloads
 
Created
Source

chai-pretty-expect npm version Build Status Dependency Status devDependency Status

Will JSON.stringify and pretty-print objects passed as 2nd, 3rd, ... parameter to expect, for nice test output.

Installation

npm install --save-dev chai-pretty-expect

Usage

 var chai = require('chai');
 chai.use(require('chai-pretty-expect'));

 //we are inside describe
 var response;

 before(function(done){
    return request.post(url, { json:true, body: myObject }, handleResponse); //post invalid json

    function handleResponse(err, res){
        if(err){
            return done(err);
        }
        response = res;
    }
 });

 it("returns correct statusCode", function() {
    expect(response, response.body).to.have.property("statusCode", 200);
 };

This expect will prettyPrint the response.body if statusCode is not 200. This is gives very nice error messages and makes sure that you can debug more easily when tests fail.

So instead of [Object object] you will get nice output of body

Keywords

FAQs

Package last updated on 31 Mar 2015

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc