Skip to content

Commit

Permalink
Fix native/js tests
Browse files Browse the repository at this point in the history
  • Loading branch information
keynmol committed Mar 20, 2024
1 parent 1c75ebe commit 8c65bb1
Show file tree
Hide file tree
Showing 69 changed files with 7,130 additions and 5 deletions.
11 changes: 6 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ inThisBuild(
)

val V = new {
val scala = "3.4.0"
val scala = "3.3.3"
val scribe = "3.11.1"
val upickle = "2.0.0"
val cats = "2.9.0"
Expand Down Expand Up @@ -192,10 +192,11 @@ lazy val tests = projectMatrix
.settings(
libraryDependencies += "org.http4s" %% "http4s-jdk-http-client" % V.http4sJdkClient % Test,
libraryDependencies += "com.disneystreaming" %%% "weaver-cats" % V.weaver % Test,
libraryDependencies += "com.lihaoyi" %%% "pprint" % "0.7.0" % Test,
libraryDependencies += "org.typelevel" %% "shapeless3-deriving" % "3.4.1" % Test,
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.17.0" % Test,
libraryDependencies += "io.github.irevive" %% "union-derivation-core" % "0.1.0" % Test,
libraryDependencies += "com.lihaoyi" %%% "pprint" % "0.8.1" % Test,
libraryDependencies += "org.typelevel" %%% "shapeless3-deriving" % "3.4.1" % Test,
libraryDependencies += "org.scalacheck" %%% "scalacheck" % "1.17.0" % Test,
libraryDependencies += "io.github.irevive" %%% "union-derivation-core" % "0.1.0" % Test,
scalaJSLinkerConfig ~= (_.withModuleKind(ModuleKind.CommonJSModule)),
Test / fork := virtualAxes.value.contains(VirtualAxis.jvm),
snapshotsPackageName := "tests.core",
snapshotsForceOverwrite := !sys.env.contains("CI"),
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"textDocument": {
"uri": "file1"
},
"workDoneToken": "stringToken"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"textDocument": {
"uri": "file1"
},
"workDoneToken": 25,
"partialResultToken": "stringToken"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"textDocument": {
"uri": "file2"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"textDocument": {
"uri": "file1"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"textDocument": {
"uri": "file1"
},
"partialResultToken": 25
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
null
Loading

0 comments on commit 8c65bb1

Please sign in to comment.