1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-10-17 16:07:49 +02:00
cheatsheets/mocha.md
2015-11-24 16:02:17 +11:00

738 B

title, category
title category
Mocha.js JavaScript libraries

BDD

mocha.setup('bdd');

describe('something', function() {
  beforeEach(function() {
  });

  it('should work', function() {
  });
});

Async

it('should save', function(done) {
  var user = new User();
  user.save(function(err) {
    if (err) throw err;
    done();
  });
});

Chai: Shoulds

chai.should();

foo.should.be.a('string');
foo.should.equal('bar');
foo.should.have.length(3);
tea.should.have.property('flavors').with.length(3);

See also