Add cleanup check

This commit is contained in:
JeremyStar™ 2024-03-29 02:48:06 +01:00
parent a74ebecf6b
commit 51c1259eb3

8
tests/unit/z_cleanup.gd Normal file
View file

@ -0,0 +1,8 @@
extends 'res://tests/unitbase.gd'
func test_root() -> void:
var children_active: Array[String] = []
for child in get_tree().root.get_children(): if child.name != "RuntimeScene" and child.name != name: children_active.append(child.name)
if children_active.size() == 0: rok()
else: rerror("There are still children active in /root/")