Skip to content

Instantly share code, notes, and snippets.

@eps1lon
Created April 14, 2020 09:27
Show Gist options
  • Save eps1lon/d000759a68b0c24a0312743937b06773 to your computer and use it in GitHub Desktop.
Save eps1lon/d000759a68b0c24a0312743937b06773 to your computer and use it in GitHub Desktop.
chai jest-like expect
import chai from 'chai';
chai.use((chaiAPI, utils) => {
chai.Assertion.addMethod('toHaveLength', function toHaveLength(length) {
new chai.Assertion(this._obj).to.have.length(length);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment