diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2024-05-29 01:26:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-29 01:26:43 +0100 |
commit | 14a74600de6f1c206ffe4750f6cb6da59657db8e (patch) | |
tree | ce593041af972fd31f83fa6b7b50458bc9f689dc /tests/util | |
parent | 2024c974b613f94f31559a1b32e2d747c2083e91 (diff) |
perf(lsp): lock out requests until init is complete (#23998)
Diffstat (limited to 'tests/util')
-rw-r--r-- | tests/util/server/src/lsp.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/util/server/src/lsp.rs b/tests/util/server/src/lsp.rs index 7c48bae23..f21035610 100644 --- a/tests/util/server/src/lsp.rs +++ b/tests/util/server/src/lsp.rs @@ -1292,6 +1292,7 @@ impl SourceFile { "js" => "javascript", "ts" | "d.ts" => "typescript", "json" => "json", + "md" => "markdown", other => panic!("unsupported file extension: {other}"), }; Self { |