Sha256: 98bfb9a9672b0d447239f809af786357533d5a49cda7b9fa281c456f417e1ba3

Contents?: true

Size: 390 Bytes

Versions: 8

Compression:

Stored size: 390 Bytes

Contents

/*!
 * Attach chai to global
 */

global.chai = require('chai');

/*!
 * Provide check for fail function.
 */

global.err = function (fn, msg) {
  try {
    fn();
    throw new chai.AssertionError('Expected an error');
  } catch (err) {
    if ('string' === typeof msg) {
      chai.expect(err.message).to.equal(msg);
    } else {
      chai.expect(err.message).to.match(msg);
    }
  }
};

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
ende-0.5.22 components/indefinido/indemma/master/components/chaijs/chai/1.9.1/test/bootstrap/karma.js
ende-0.5.21 components/indefinido/indemma/master/components/chaijs/chai/1.9.1/test/bootstrap/karma.js
ende-0.5.6 components/chaijs/chai/1.9.1/test/bootstrap/karma.js
ende-0.5.5 components/chaijs/chai/1.9.1/test/bootstrap/karma.js
ende-0.5.4 components/chaijs/chai/1.9.1/test/bootstrap/karma.js
ende-0.5.3 components/chaijs/chai/1.9.1/test/bootstrap/karma.js
ende-0.5.2 components/chaijs/chai/1.9.1/test/bootstrap/karma.js
ende-0.5.1 components/chaijs/chai/1.9.1/test/bootstrap/karma.js