2024-03-28 14:48:50 +01:00
|
|
|
extends Node
|
|
|
|
|
2024-04-08 20:29:47 +02:00
|
|
|
# Tests are in a subdirectory
|
2024-03-28 14:48:50 +01:00
|
|
|
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%"
|