CORE/addons/besseretests_config.gd

9 lines
298 B
GDScript3
Raw Permalink Normal View History

extends Node
2024-04-08 20:29:47 +02:00
# Tests are in a subdirectory
var test_directory: String = "res://tests/unit"
2024-04-08 20:29:47 +02:00
# We want diagnostic output
2024-04-07 22:02:56 +02:00
var log_level: int = 0
2024-04-08 20:29:47 +02:00
# To match CORE's logging format while still being differentiable
var log_format: String = "%color_start%<%time%> <%level% %origin%> %message%%color_end%"