editor_test.go

 1package editor
 2
 3import (
 4	"testing"
 5
 6	"github.com/charmbracelet/crush/internal/app"
 7	"github.com/stretchr/testify/require"
 8)
 9
10func TestEditorTypingForwardSlashOpensCompletions(t *testing.T) {
11	editorCmp := newEditor(&app.App{})
12	require.NotNil(t, editorCmp)
13}