Update example config in README

This commit is contained in:
JeremyStar™ 2024-04-08 20:26:21 +02:00
parent 4bcd22d48b
commit fb38072005
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D

View file

@ -72,8 +72,16 @@ If you want to update **Bessere Tests**'s configuration create a GDScript file a
```gdscript
extends Node
# Enables development mode. Please keep that disabled.
var dev: bool = false
# What directory should tests be located in?
var test_directory: String = "res://tests"
# The minimum log level.
# Possible values: 0 = diagnostic, 1 = verbose, 2 = informational, 3 = warning, 4 = error
var log_level: int = 2
# The logging template. Is of type String.
# Available placeholders: %time%, %time_us%, %time_ms%, %level%, %origin%, %message%, %color_start% & %color_end%
var log_format = null
# If Bessere Tests should complain about orphan nodes.
# This behaviour is reportedly broken and does not work correctly (see #1).
# Rely on Godot's debug/verbose output for this instead (use Bessere Tests' command line script).