diff options
Diffstat (limited to 'internal/lsp/codeaction_custom_test.go')
| -rw-r--r-- | internal/lsp/codeaction_custom_test.go | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/internal/lsp/codeaction_custom_test.go b/internal/lsp/codeaction_custom_test.go index 7baf993..1ea4c3c 100644 --- a/internal/lsp/codeaction_custom_test.go +++ b/internal/lsp/codeaction_custom_test.go @@ -27,7 +27,18 @@ func capResp(t *testing.T, buf *bytes.Buffer) Response { func TestHandleCodeAction_ListsCustomActions(t *testing.T) { var out bytes.Buffer - s := &Server{logger: log.New(io.Discard, "", 0), docs: make(map[string]*document), out: &out} + s := &Server{ + logger: log.New(io.Discard, "", 0), + docs: make(map[string]*document), + out: &out, + inlineOpen: ">", + inlineClose: ">", + inlineOpenChar: '>', + inlineCloseChar: '>', + chatSuffix: ">", + chatSuffixChar: '>', + chatPrefixes: []string{"?", "!", ":", ";"}, + } s.llmClient = fakeLLM{resp: "IGN"} // Inject two custom actions s.customActions = []CustomAction{ |
