RxLua/tests/ignoreElements.lua

10 lines
330 B
Lua

describe('ignoreErrors', function()
it('passes through errors from the source', function()
expect(Rx.Observable.throw():ignoreElements()).to.produce.error()
end)
it('does not produce any values produced by the source', function()
expect(Rx.Observable.fromRange(3):ignoreElements()).to.produce.nothing()
end)
end)