Enable built-in script in the integration tests

pull/3236/head
elsid 5 months ago
parent 54c76203a7
commit f5b24efdca
No known key found for this signature in database
GPG Key ID: 4DE04C198CBA7625

@ -1 +0,0 @@
# It is an empty file that overrides builtin.omwscripts and disables builtin scripts

@ -220,7 +220,7 @@ testing.registerLocalTest('findNearestNavMeshPosition',
return {
engineHandlers = {
onUpdate = testing.updateLocal,
onFrame = testing.updateLocal,
},
eventHandlers = testing.eventHandlers
}

@ -181,7 +181,9 @@ end
function M.updateLocal()
if localTestRunner and coroutine.status(localTestRunner) ~= 'dead' then
coroutine.resume(localTestRunner)
if not core.isWorldPaused() then
coroutine.resume(localTestRunner)
end
else
localTestRunner = nil
end

Loading…
Cancel
Save