mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-10 04:40:25 +01:00
10 lines
399 B
GDScript
10 lines
399 B
GDScript
|
extends "res://addons/gut/test.gd"
|
||
|
|
||
|
const Terminal := preload("res://addons/godot_xterm/terminal.gd")
|
||
|
|
||
|
|
||
|
func test_writing_random_data_to_terminal_does_not_crash_application():
|
||
|
add_child_autofree(preload("res://test/scenes/write_random.tscn").instance())
|
||
|
yield(yield_frames(5, "Writing random data to terminal"), YIELD)
|
||
|
assert_true(true, "Expected no crash when writing random data to terminal.")
|