Skip to content

Commit

Permalink
Add scalacheck dependency (#49)
Browse files Browse the repository at this point in the history
Required by, e.g., simple-linked-list exercise
Context: https://forum.exercism.org/t/tests-fail-for-exercise-simple-linked-list/3640/9
  • Loading branch information
artamonovkirill committed Feb 16, 2023
1 parent 3e7774a commit 2b84335
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ lazy val root = (project in file("."))
name := "TestRunner",
// not in the Test scope so that it gets added to the fat jar generated by sbt assembly
libraryDependencies += scalaTest,
libraryDependencies += scalaCheck,
libraryDependencies += "org.json" % "json" % "20220320",
// for the LensPerson exercise
libraryDependencies ++= monocle
Expand Down
1 change: 1 addition & 0 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ object Dependencies {
val monocleVersion = "2.0.0"

lazy val scalaTest = "org.scalatest" %% "scalatest" % "3.2.10"
lazy val scalaCheck = "org.scalatestplus" %% "scalacheck-1-15" % "3.2.9.0"

lazy val monocle = Seq(
"com.github.julien-truffaut" %% "monocle-core" % monocleVersion,
Expand Down

0 comments on commit 2b84335

Please sign in to comment.