1.0.1 • Published 8 years ago

cafeteria v1.0.1

Weekly downloads
7
License
MIT
Repository
github
Last release
8 years ago

Cafeteria

npm version npm downloads

Dumb wrapper of chai, sinon and friends.

Install

$ npm install --save-dev mocha cafeteria

Dependencies

Usage

import { expect } from 'cafeteria';

const foo = () => 'bar';
const foos = ['bar'];

describe('foo', function () {
  it('should returns bar.', function () {
    expect(foo()).equal('bar');
  })
});

describe('foos', function () {
  it('should not be empty.', function () {
    expect(foos).not.to.be.empty(); // already applied dirty-chai
  })
});

API

  • cafeteria.chai: Same with chai.
  • cafeteria.assert: Same with chai's.
  • cafeteria.expect: Same with chai's.
  • cafeteria.should: Same with chai's. Should run as function. e.g. should().
  • cafeteria.sinon: Same with sinon.
  • cafeteria.sandbox: Same with sinon's.
  • cafeteria.spy: Same with sinon's.
  • cafeteria.stub: Same with sinon's.
  • cafeteria.mock: Same with sinon's.

Useful links