summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJackson Moore <jacksonmoore@tuta.io>2026-09-04 11:38:08 +0200
committerJackson Moore <jacksonmoore@tuta.io>2026-09-04 11:38:08 +0200
commite32d66c1bc77b149f49e96006e0b377789e8e9f9 (patch)
treef0c7e1ae5bcf94347d0af40a73507fc31117747a /tests
parent9b45bf9f8d21087520dd2a2edcb655e00283f956 (diff)
Assign ordinary direct priority
Diffstat (limited to 'tests')
-rw-r--r--tests/run.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/run.lua b/tests/run.lua
index f02219f..1a3536f 100644
--- a/tests/run.lua
+++ b/tests/run.lua
@@ -4425,6 +4425,13 @@ test("Cursor and character overlays use high priority", function()
end, "unknown feedback overlay group")
end)
+test("Direct overlays use ordinary priority", function()
+ same(
+ feedback_service.Priority.ORDINARY,
+ feedback_service.overlay_priority("CleverFDirect")
+ )
+end)
+
for _, item in ipairs(tests) do
local ok, failure = xpcall(item.body, debug.traceback)
if not ok then