chore: converted import editor to LiveComponent

This commit is contained in:
2026-05-03 17:57:43 +02:00
parent fa76cdf11d
commit 0f193929da
6 changed files with 806 additions and 375 deletions

View File

@@ -0,0 +1,9 @@
defmodule BDS.Desktop.ShellLive.ChatEditorTest do
use ExUnit.Case, async: false
test "ChatEditor exports LiveComponent callbacks" do
assert function_exported?(BDS.Desktop.ShellLive.ChatEditor, :update, 2)
assert function_exported?(BDS.Desktop.ShellLive.ChatEditor, :handle_event, 3)
assert function_exported?(BDS.Desktop.ShellLive.ChatEditor, :render, 1)
end
end