Skip to content

Commit 6b145c5

Browse files
committed
Move TestClient to kernel
1 parent d876196 commit 6b145c5

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ lazy val lsp = module("lsp")
230230
(Test / test).value
231231
},
232232
)
233-
.dependsOn(lspKernel)
233+
.dependsOn(lspKernel % "test->test;compile->compile")
234234

235235
lazy val e2e = module("e2e")
236236
.enablePlugins(BuildInfoPlugin)

modules/lsp/src/test/scala/playground/lsp/harness/TestClient.scala modules/lsp-kernel/src/main/scala/playground/lsp/harness/TestClient.scala

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import playground.lsp.ConfigurationValue
1010
import playground.lsp.LanguageClient
1111
import playground.lsp.MessageType
1212

13-
// todo move to kernel
1413
trait TestClient[F[_]] extends LanguageClient[F] {
1514
def getEvents: F[List[TestClient.Event]]
1615

0 commit comments

Comments
 (0)