Add test for update event

This commit is contained in:
Dale Glass 2023-03-05 23:33:00 +01:00 committed by ksuprynowicz
parent acd19f7c40
commit 1e1b96765f

View file

@ -250,7 +250,25 @@ void ScriptEngineTests::testRaiseExceptionAndCatch() {
void ScriptEngineTests::testSignal() {
QString script =
"var count = 0;"
"Script.update.connect(function(deltaTime) {"
" count++;"
" print(deltaTime);"
" if (count >= 10) {"
" Script.stop(true);"
" }"
"});";
QStringList printed;
auto sm = makeManager(script, "testSignal.js");
connect(sm.get(), &ScriptManager::printedMessage, [&printed](const QString& message, const QString& engineName){
printed.append(message);
});
sm->run();
QVERIFY(printed.length() >= 10);
}