You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When adding a custom child node on before() in a test suite stops on Run Debug with an error
Invalid call. Nonexistent function 'get_name' in base 'Nil'.
Steps to Reproduce
extends GdUnitTestSuite
func before():
# this line let the suite fail on 'Run Debug'
add_child(auto_free(Node.new()))
func test_case1():
assert_str("test_case1").is_equal("test_case1")
func test_case2():
assert_str("test_case2").is_equal("test_case2")
The text was updated successfully, but these errors were encountered:
The used Godot version:
Godot 3.x
OS including version:
All
Describe the bug
When adding a custom child node on
before()
in a test suite stops onRun Debug
with an errorSteps to Reproduce
The text was updated successfully, but these errors were encountered: