cafeteria

1.0.1 • Public • Published

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

Package Sidebar

Install

npm i cafeteria

Weekly Downloads

0

Version

1.0.1

License

MIT

Last publish

Collaborators

  • mrnoname