util.promise: Support delayed promise execution

This commit is contained in:
Kim Alvefur 2019-01-05 07:08:24 +01:00
parent 51c1c97fe2
commit a35dd91a12
2 changed files with 26 additions and 5 deletions

View file

@ -668,4 +668,18 @@ describe("util.promise", function ()
assert.spy(on_rejected).was_called_with(test_error);
end);
end);
describe("set_nexttick()", function ()
it("works", function ()
local next_tick = spy.new(function (f)
f();
end)
local cb = spy.new();
promise.set_nexttick(next_tick);
promise.new(function (y, _)
y("okay");
end):next(cb);
assert.spy(next_tick).was.called();
assert.spy(cb).was.called_with("okay");
end);
end)
end);