Add an integration test for replicating buffer's diagnostics

This commit is contained in:
Max Brunsfeld 2021-11-02 14:57:24 -07:00
parent 89392cd23d
commit a66b81d60a
5 changed files with 116 additions and 2 deletions

View file

@ -20,6 +20,7 @@ test-support = [
"editor/test-support",
"gpui/test-support",
"language/test-support",
"lsp/test-support",
"project/test-support",
"rpc/test-support",
"tempdir",
@ -37,6 +38,7 @@ editor = { path = "../editor" }
file_finder = { path = "../file_finder" }
gpui = { path = "../gpui" }
language = { path = "../language" }
lsp = { path = "../lsp" }
people_panel = { path = "../people_panel" }
project = { path = "../project" }
project_panel = { path = "../project_panel" }
@ -90,6 +92,7 @@ buffer = { path = "../buffer", features = ["test-support"] }
editor = { path = "../editor", features = ["test-support"] }
gpui = { path = "../gpui", features = ["test-support"] }
language = { path = "../language", features = ["test-support"] }
lsp = { path = "../lsp", features = ["test-support"] }
project = { path = "../project", features = ["test-support"] }
rpc = { path = "../rpc", features = ["test-support"] }
client = { path = "../client", features = ["test-support"] }