diff options
| author | Kitson Kelly <me@kitsonkelly.com> | 2022-01-07 11:27:13 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-07 11:27:13 +1100 |
| commit | 57bfa87b2c56809eedcc64bf63be9dcdd6c7400f (patch) | |
| tree | a93fe2d056323754f8d45d64c5fbc7204b06ee12 /cli/tests/testdata/lsp/registries | |
| parent | 2067820714fea49be1692fa678754488ace8228b (diff) | |
feat(lsp): provide registry details on hover if present (#13294)
Closes: #13272
Diffstat (limited to 'cli/tests/testdata/lsp/registries')
| -rw-r--r-- | cli/tests/testdata/lsp/registries/deno-import-intellisense.json | 2 | ||||
| -rw-r--r-- | cli/tests/testdata/lsp/registries/doc_a_latest_mod.ts.json | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/testdata/lsp/registries/deno-import-intellisense.json b/cli/tests/testdata/lsp/registries/deno-import-intellisense.json index 7fe514dc0..5fd87085e 100644 --- a/cli/tests/testdata/lsp/registries/deno-import-intellisense.json +++ b/cli/tests/testdata/lsp/registries/deno-import-intellisense.json @@ -16,6 +16,7 @@ }, { "key": "path", + "documentation": "/lsp/registries/doc_${module}_${{version}}_${path}.json", "url": "/lsp/registries/${module}_${{version}}_${path}.json" } ] @@ -30,6 +31,7 @@ }, { "key": "path", + "documentation": "/lsp/registries/doc_${module}_latest_${path}.json", "url": "/lsp/registries/${module}_latest_${path}.json" } ] diff --git a/cli/tests/testdata/lsp/registries/doc_a_latest_mod.ts.json b/cli/tests/testdata/lsp/registries/doc_a_latest_mod.ts.json new file mode 100644 index 000000000..522f5b271 --- /dev/null +++ b/cli/tests/testdata/lsp/registries/doc_a_latest_mod.ts.json @@ -0,0 +1,4 @@ +{ + "kind": "markdown", + "value": "**a**\n\nmod.ts" +} |
