We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d876196 commit 6b145c5Copy full SHA for 6b145c5
build.sbt
@@ -230,7 +230,7 @@ lazy val lsp = module("lsp")
230
(Test / test).value
231
},
232
)
233
- .dependsOn(lspKernel)
+ .dependsOn(lspKernel % "test->test;compile->compile")
234
235
lazy val e2e = module("e2e")
236
.enablePlugins(BuildInfoPlugin)
modules/lsp/src/test/scala/playground/lsp/harness/TestClient.scala modules/lsp-kernel/src/main/scala/playground/lsp/harness/TestClient.scala
@@ -10,7 +10,6 @@ import playground.lsp.ConfigurationValue
10
import playground.lsp.LanguageClient
11
import playground.lsp.MessageType
12
13
-// todo move to kernel
14
trait TestClient[F[_]] extends LanguageClient[F] {
15
def getEvents: F[List[TestClient.Event]]
16
0 commit comments