JezK
Edit File: ArgumentOutOfRangeError-spec.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var chai_1 = require("chai"); var rxjs_1 = require("rxjs"); describe('ArgumentOutOfRangeError', function () { var error = new rxjs_1.ArgumentOutOfRangeError(); it('Should have a name', function () { (0, chai_1.expect)(error.name).to.be.equal('ArgumentOutOfRangeError'); }); it('Should have a message', function () { (0, chai_1.expect)(error.message).to.be.equal('argument out of range'); }); it('Should have a stack', function () { (0, chai_1.expect)(error.stack).to.be.a('string'); }); }); //# sourceMappingURL=ArgumentOutOfRangeError-spec.js.map