14 lines
423 B
GDScript
14 lines
423 B
GDScript
extends CoreBaseModule
|
|
|
|
@onready var suite: BessereTestsTest = get_node_or_null("/root/suite_core")
|
|
|
|
func _initialize() -> void:
|
|
logger.info("tests/custom_module.gd", "Module has been initialized")
|
|
suite.callback = "_initialize"
|
|
|
|
func _pull_config() -> void:
|
|
logger.info("tests/custom_module.gd", "The configuration has been updated")
|
|
suite.callback = "_pull_config"
|
|
|
|
func hello_test() -> String:
|
|
return "Hello Test!"
|