2024-03-28 14:48:50 +01:00
|
|
|
extends CoreBaseModule
|
|
|
|
|
|
|
|
@onready var suite: BessereTestsTest = get_node_or_null("/root/suite_core")
|
|
|
|
|
|
|
|
func _initialize() -> void:
|
2024-03-31 11:22:57 +02:00
|
|
|
loggeri.info("Module has been initialized")
|
2024-03-28 14:48:50 +01:00
|
|
|
suite.callback = "_initialize"
|
|
|
|
|
2024-03-29 02:40:56 +01:00
|
|
|
func _cleanup() -> void:
|
2024-03-31 11:22:57 +02:00
|
|
|
loggeri.info("Cleaning module")
|
2024-03-29 02:40:56 +01:00
|
|
|
|
2024-03-28 14:48:50 +01:00
|
|
|
func _pull_config() -> void:
|
2024-03-31 11:22:57 +02:00
|
|
|
loggeri.info("The configuration has been updated")
|
2024-03-28 14:48:50 +01:00
|
|
|
suite.callback = "_pull_config"
|
|
|
|
|
|
|
|
func hello_test() -> String:
|
|
|
|
return "Hello Test!"
|