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