Skip to content

Commit

Permalink
Make scalajs-dottydoc happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Baccata committed Apr 6, 2021
1 parent ad2a683 commit cab69a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/framework/src-js/RunnerCompat.scala
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ trait RunnerCompat[F[_]] { self: sbt.testing.Runner =>
private[weaver] val failedTests = ListBuffer.empty[(SuiteName, TestOutcome)]

def reportDone(out: TestOutcomeJS): Unit = {
val serialised = JSON.stringify(out)
val serialised = JSON.stringify(out, null)
channel match {
case Some(send) => send(serialised)
case None => failedTests.append(TestOutcomeJS.rehydrate(out))
Expand Down

0 comments on commit cab69a4

Please sign in to comment.