Socket
Socket
Sign inDemoInstall

chai

Package Overview
Dependencies
3
Maintainers
1
Versions
95
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    chai

BDD/TDD assertion library for node.js and the browser. Test framework agnostic.


Version published
Maintainers
1
Install size
319 kB
Created

Package description

What is chai?

Chai is a BDD / TDD assertion library for node and the browser that can be delightfully paired with any javascript testing framework. It provides functions to express assertions in a readable language, supporting both 'should' and 'expect' style syntaxes, as well as a traditional 'assert' style interface.

What are chai's main functionalities?

Should Style Assertions

Allows you to write assertions in a more human-readable form, which reads like English. The 'should' style extends each object with a 'should' property to start your chain.

chai.should();
var should = chai.should();
should.exist(value, 'value should not be null or undefined');

Expect Style Assertions

Provides a function called 'expect' to make assertions about values. This style is similar to 'should' but does not extend any objects, which is useful for working with libraries that don't allow object extensions.

var expect = chai.expect;
expect(value).to.exist.and.be.an('object');

Assert Style Assertions

Offers a more traditional testing interface, which is similar to Node.js' core 'assert' module but with more capabilities and better error messages.

var assert = chai.assert;
assert.typeOf(value, 'string', 'value is a string');

Chainable Language Chains

Provides chainable getters to improve the readability of your assertions, allowing you to write more expressive tests.

expect(value).to.be.an('array').that.includes(3);

Plugins

Supports plugins to extend its core functionalities, which can be used to add new assertions, matchers, or methods to the library.

var chaiHttp = require('chai-http');
chai.use(chaiHttp);

Other packages similar to chai

Readme

Source

Chai Documentation

Chai is a BDD / TDD assertion library for node and the browser that can be delightfully paired with any javascript testing framework.

For more information or to download plugins, view the documentation.

Build Status

Selenium Test Status

Plugins

Chai offers a robust Plugin architecture for extending Chai's assertions and interfaces.

Contributors

 repo age : 2 years, 11 months
 active   : 189 days
 commits  : 792
 files    : 57
 authors  :
   551  Jake Luer               69.6%
    79  Veselin Todorov         10.0%
    43  Domenic Denicola        5.4%
     7  Joshua Perry            0.9%
     6  Ruben Verborgh          0.8%
     5  George Kats             0.6%
     5  Jo Liss                 0.6%
     5  Juliusz Gonera          0.6%
     5  Scott Nonnenberg        0.6%
     5  leider                  0.6%
     4  David da Silva          0.5%
     4  John Firebaugh          0.5%
     4  Max Edmands             0.5%
     4  Nick Heiner             0.5%
     4  Veselin                 0.5%
     4  charlierudolph          0.5%
     4  josher19                0.5%
     3  Andrei Neculau          0.4%
     3  Duncan Beevers          0.4%
     3  Jake Rosoman            0.4%
     3  Jeff Barczewski         0.4%
     3  Keith Cirkel            0.4%
     3  Ryunosuke SATO          0.4%
     2  Bartvds                 0.3%
     2  Edwin Shao              0.3%
     2  Jakub Nešetřil          0.3%
     2  Roman Masek             0.3%
     2  Teddy Cross             0.3%
     1  Anand Patil             0.1%
     1  Benjamin Horsleben      0.1%
     1  Brandon Payton          0.1%
     1  Chris Connelly          0.1%
     1  Chris Thompson          0.1%
     1  Christopher Hiller      0.1%
     1  Chun-Yi                 0.1%
     1  DD                      0.1%
     1  Dido Arellano           0.1%
     1  Jeff Welch              0.1%
     1  Julien Wajsberg         0.1%
     1  Kilian Ciuffolo         0.1%
     1  Luís Cardoso            0.1%
     1  Martin Middel           0.1%
     1  Niklas Närhinen         0.1%
     1  Paul Miller             0.1%
     1  Refael Ackermann        0.1%
     1  Sasha Koss              0.1%
     1  Victor Costan           0.1%
     1  Vinay Pulim             0.1%
     1  Virginie BARDALES       0.1%
     1  laconbass               0.1%
     1  mohayonao               0.1%
     1  piecioshka              0.1%
     1  shinnn                  0.1%

License

(The MIT License)

Copyright (c) 2011-2014 Jake Luer jake@alogicalparadox.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Keywords

FAQs

Last updated on 10 Nov 2014

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc