Sha256: aa5f1ecd408d127babbec24dc060bf159412d4737af49c2b3f6f62dfabd94ed2
Contents?: true
Size: 404 Bytes
Versions: 8
Compression:
Stored size: 404 Bytes
Contents
/*! * Attach chai to global */ global.chai = require('../..'); /*! * Provide check for fail function. */ global.err = function (fn, msg) { try { fn(); throw new chai.AssertionError({ message: '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