diff --git a/internal/tui/components/chat/editor/editor_test.go b/internal/tui/components/chat/editor/editor_test.go new file mode 100644 index 0000000000000000000000000000000000000000..b9d56e023b231c9687224bb304213aa112a80000 --- /dev/null +++ b/internal/tui/components/chat/editor/editor_test.go @@ -0,0 +1,13 @@ +package editor + +import ( + "testing" + + "github.com/charmbracelet/crush/internal/app" + "github.com/stretchr/testify/require" +) + +func TestEditorTypingForwardSlashOpensCompletions(t *testing.T) { + editorCmp := newEditor(&app.App{}) + require.NotNil(t, editorCmp) +}