spmason / expectations

Jasmine-style expect syntax for nodejs + browser
BSD Zero Clause License
30 stars 9 forks source link

Build Status

Jasmine-style expectations for node.js & the browser

This is a standalone package that supplies jasmine style expect(foo).toEqual(bar);-style expectations.

Designed for use in mocha, but suitable for use in any test framework.

Installation

Usage

NodeJS:

require('expectations');    // exports a global, so use anywhere

From Mocha (on commandline or add to test/mocha.opts):

--require expectations

In browser:

<script src="https://github.com/spmason/expectations/raw/master/expectations.js"></script>

API

We aim to support the majority of the jasmine expect API, but there are likely things missing. Pull Requests (with tests!) graciously accepted.