“chai attend” Réponses codées

Chai s'attend à être de type tableau

expect([1, 2]).to.be.an('array');
Graceful Goose

longueur chai supérieure à

expect('foo').to.have.lengthOf(3); // Recommended
expect('foo').to.have.lengthOf.above(2); // Not recommended

expect([1, 2, 3]).to.have.lengthOf(3); // Recommended
expect([1, 2, 3]).to.have.lengthOf.above(2); // Not recommended
Disgusted Dugong

Qu'attend Chai

Object.prototype.b = 2;

expect({a: 1}).to.have.own.property('a');
expect({a: 1}).to.have.property('b');
expect({a: 1}).to.not.have.own.property('b');

expect({a: 1}).to.own.include({a: 1});
expect({a: 1}).to.include({b: 2}).but.not.own.include({b: 2});
Cute Chipmunk

chai attend

var expect = chai.expect;

expect(foo).to.be.a('string');
expect(foo).to.equal('bar');
expect(foo).to.have.lengthOf(3);
expect(tea).to.have.property('flavors')
  .with.lengthOf(3);
cadot.eu

Réponses similaires à “chai attend”

Questions similaires à “chai attend”

Plus de réponses similaires à “chai attend” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code