2024-03-28 14:48:50 +01:00
|
|
|
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"
|
|
|
|
|
2024-03-29 02:40:56 +01:00
|
|
|
func _cleanup() -> void:
|
|
|
|
logger.info("tests/custom_module.gd", "Cleaning module")
|
|
|
|
|
2024-03-28 14:48:50 +01:00
|
|
|
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!"
|