Update example config in README
This commit is contained in:
parent
4bcd22d48b
commit
fb38072005
1 changed files with 8 additions and 0 deletions
|
@ -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).
|
||||
|
|
Loading…
Reference in a new issue