Skip to content

ExpectJS is a Behavior Driven Development assertion library for JavaScript.

Notifications You must be signed in to change notification settings

mikaelsc5/ExpectJS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ExpectJS

ExpectJS is a Behavior Driven Development assertion library for JavaScript.

The main purpose of ExpectJS is to make your BDD test writing easy to read, write and maintain.

When should I use ExpectJS

  • You want to write fluent tests
  • You want to use an assertion library for the test framework of your choice
  • You want to use the same assertion library in all environments
  • You want a functional programming capable assert library
  • (You want to extend the assertion library easily)

How to use ExpectJS

Node

Install it with NPM and add to package.json as a devDependency

$ npm install expectjs --save-dev

Then:

var expect = require('expect.js');

Browser

Include expect.js from the top level of this repository.

<script src="expect.js"></script>

Why did you create this?

Jasmine, Chai and expect.js are great, but they all have something that didn't quite work as well as it could. Asynchronous testing support could be better in Jasmine. Chai didn't work in IE8 out of the box. expect.js has unfixed bugs and the syntax isn't as fluent as Jasmine's.

Included matchers

ExpectJS is inspired by the easy to read Jasmine syntax and the initial matchers are compatible. The development is still in the early phases and it's unknown what will be included in the 1.0 release.

The 'toBe' matcher compares with ===

The 'toBeDefined' matcher compares against 'undefined'

The 'toBeUndefined' matcher compares against 'undefined'

The 'toBeNull' matcher compares against 'null'

The 'toBeTruthy' matcher is for boolean casting testing

The 'toBeFalsy' matcher is for boolean casting testing

The 'toEqual' matcher compares objects with ===

The 'toMatch' matcher compares the regular expression pattern with a string

The 'toBeLessThan' matcher compares with <

The 'toBeGreaterThan' matcher compares with >

The 'toBeCloseTo' matcher compares with the given precision

The 'toThrow' matcher is for testing if a function throws an exception

All matchers have a 'not' implemention that negate the matching.

There is also a 'toFail' function for detecting erroneous control flows in tests. Unlike the other functions, 'toFail' is a function defined for the 'expect' object and used as follows:

expect.toFail("The server response should never be empty", response, {'data': 'foo'});

Design choices

Unable to find an assert library for functional programming a decision was made to create one. The library will follow the rules of function programming laid out by Stephen Young

  • No value changes, only initial value assigments
  • No loops, only recursions
  • No object or array state changes
  • No Date objects or usage of Math.random due to their changing nature

Unfortunately it will not be possible to be fully follow the rules above as it's not possible to access object properties in a recursive manner in legacy browsers. So at least one exception to the rules must be made, but currently it is unclear how that exception is formulated. Also recursion has a high risk of causing a stack overflow, which means complex structures needs to be handled some other way that is to be determined later.

This will be a learning effort as well as the author does not fully master functional programming. All contributions are welcomed.

The library will use closures, Monads, recursions, continuations and trampolines where needed. Optimizations will not be done at the early stages of the development, but will be considered later on to improve the performance. Therefore while performance is a key factor, it will not be benchmarked until later. Once the library has become easily extendable, then alternative implementations can be benchmarked and the best performing one is selected by default and the others can be used as drop-in replacements to better fit the developer needs.

The MIT License (MIT)

Copyright (C) 2013 Mikael Blomberg.

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.

About

ExpectJS is a Behavior Driven Development assertion library for JavaScript.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published