Change check messages
This commit is contained in:
parent
2dd5c2b4c2
commit
c04e6246a4
1 changed files with 3 additions and 3 deletions
|
@ -85,13 +85,13 @@ func update_window_properties() -> void:
|
||||||
func perform_checks() -> void:
|
func perform_checks() -> void:
|
||||||
ldiag("Performing checks")
|
ldiag("Performing checks")
|
||||||
# Check for development mode
|
# Check for development mode
|
||||||
if config_dev: lwarn("Development mode is active, here be dragons!")
|
if config_dev: lwarn("config_dev: Development mode is active, here be dragons!")
|
||||||
|
|
||||||
# Check orphan nodes setting
|
# Check orphan nodes setting
|
||||||
if config_print_orphan_nodes: lwarn("Bessere Tests is allowed to complain about orphan nodes. It's known that this can lead to false-positive warnings (see #1)")
|
if config_print_orphan_nodes: lwarn("config_print_orphan_nodes: Bessere Tests is allowed to complain about orphan nodes. It's known that this can lead to false-positive warnings (see #1)")
|
||||||
|
|
||||||
# Check for testing directory
|
# Check for testing directory
|
||||||
if !DirAccess.dir_exists_absolute(config_test_directory): await lcrash("Testing directory \"" + config_test_directory + "\" does not exist")
|
if !DirAccess.dir_exists_absolute(config_test_directory): await lcrash("config_test_directory: Directory \"" + config_test_directory + "\" does not exist")
|
||||||
|
|
||||||
# Print test results
|
# Print test results
|
||||||
func print_results() -> void:
|
func print_results() -> void:
|
||||||
|
|
Loading…
Reference in a new issue