8 lines
298 B
GDScript
8 lines
298 B
GDScript
extends Node
|
|
|
|
# Tests are in a subdirectory
|
|
var test_directory: String = "res://tests/unit"
|
|
# We want diagnostic output
|
|
var log_level: int = 0
|
|
# To match CORE's logging format while still being differentiable
|
|
var log_format: String = "%color_start%<%time%> <%level% %origin%> %message%%color_end%"
|