mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Add a test for c2.later
This commit is contained in:
parent
53ae8ab8ca
commit
22646608f9
|
@ -547,4 +547,28 @@ TEST_F(PluginTest, requireNoData)
|
||||||
)lua"));
|
)lua"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST_F(PluginTest, testTimerRec)
|
||||||
|
{
|
||||||
|
configure();
|
||||||
|
|
||||||
|
RequestWaiter waiter;
|
||||||
|
lua->set("done", [&] {
|
||||||
|
waiter.requestDone();
|
||||||
|
});
|
||||||
|
|
||||||
|
sol::protected_function fn = lua->script(R"lua(
|
||||||
|
local i = 0
|
||||||
|
f = function()
|
||||||
|
i = i + 1
|
||||||
|
c2.log(c2.LogLevel.Debug, "cb", i)
|
||||||
|
if i < 1024 then
|
||||||
|
c2.later(f, 1)
|
||||||
|
else
|
||||||
|
done()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
c2.later(f, 1)
|
||||||
|
)lua");
|
||||||
|
waiter.waitForRequest();
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue