mirror of
https://github.com/lihop/godot-xterm.git
synced 2025-05-05 12:44:24 +02:00
Replace Gut with WAT
Gut was freezing on some integration tests. It was also entering an infinite loop after exiting (even after closing Godot and VSCode) which caused a `godot.log` file in app_userdata to keep growing until my hard drive was full.
This commit is contained in:
parent
39702646dc
commit
115521f645
10 changed files with 165 additions and 162 deletions
|
@ -13,11 +13,37 @@ _global_script_classes=[ {
|
|||
"class": "GDXterm",
|
||||
"language": "GDScript",
|
||||
"path": "res://addons/godot_xterm/namespace.gd"
|
||||
}, {
|
||||
"base": "Reference",
|
||||
"class": "WAT",
|
||||
"language": "GDScript",
|
||||
"path": "res://addons/WAT/namespace.gd"
|
||||
}, {
|
||||
"base": "Node",
|
||||
"class": "WATTest",
|
||||
"language": "GDScript",
|
||||
"path": "res://addons/WAT/test/test.gd"
|
||||
} ]
|
||||
_global_script_class_icons={
|
||||
"GDXterm": ""
|
||||
"GDXterm": "",
|
||||
"WAT": "",
|
||||
"WATTest": ""
|
||||
}
|
||||
|
||||
[WAT]
|
||||
|
||||
Test_Directory="res://test"
|
||||
Results_Directory="res://test"
|
||||
Test_Metadata_Directory="res://test"
|
||||
Tags=PoolStringArray( "unit", "integration", "unix", "windows" )
|
||||
Window_Size=Vector2( 1280, 720 )
|
||||
Minimize_Window_When_Running_Tests=false
|
||||
Port=6008
|
||||
Run_All_Tests=Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":0,"unicode":0,"echo":false,"script":null)
|
||||
|
||||
Auto_Refresh_Tests=false
|
||||
Display=8
|
||||
|
||||
[application]
|
||||
|
||||
config/name="Godot Xterm"
|
||||
|
@ -30,7 +56,7 @@ window/vsync/use_vsync=false
|
|||
|
||||
[editor_plugins]
|
||||
|
||||
enabled=PoolStringArray( "res://addons/godot_xterm/plugin.cfg" )
|
||||
enabled=PoolStringArray( "res://addons/WAT/plugin.cfg", "res://addons/godot_xterm/plugin.cfg" )
|
||||
|
||||
[rendering]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue