Skip to content

Commit 1c963ef

Browse files
committed
remove printlns
1 parent 620963a commit 1c963ef

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

sjsls/test/src/spaRoutesSuite.scala

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ class SpaRoutesSuite extends CatsEffectSuite:
4343
_ <- assertIOBoolean(resp.map(_.status == Status.Ok))
4444
body <- resp.flatMap(_.bodyText.compile.string)
4545
yield
46-
println(body)
4746
assert(body.contains("""<link rel="modulepreload" href="internal-xxxx.js?h=internalHash" />"""))
4847
assert(!body.contains("mainHash"))
4948
end for
@@ -64,7 +63,6 @@ class SpaRoutesSuite extends CatsEffectSuite:
6463
_ <- assertIOBoolean(resp.map(_.status == Status.Ok))
6564
body <- resp.flatMap(_.bodyText.compile.string)
6665
yield
67-
println(body)
6866
assert(body.contains("""<link rel="modulepreload" href="internal-xxxx.js?h=internalHash" />"""))
6967
assert(!body.contains("""mainHash"""))
7068
end for
@@ -85,7 +83,6 @@ class SpaRoutesSuite extends CatsEffectSuite:
8583
_ <- assertIOBoolean(resp.map(_.status == Status.Ok))
8684
body <- resp.flatMap(_.bodyText.compile.string)
8785
yield
88-
println(body)
8986
assert(!body.contains("mainHash"))
9087
assert(body.contains("""<link rel="modulepreload" href="internal-xxxx.js?h=internalHash" />"""))
9188
end for

0 commit comments

Comments
 (0)