We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42331cb commit 1b0d39cCopy full SHA for 1b0d39c
testsuites/lbt-prelude/lbt-prelude-purescript/test/Test/Main.purs
@@ -3,7 +3,6 @@ module Test.Main
3
) where
4
5
import Prelude
6
-
7
import Data.Either (either)
8
import Effect (Effect)
9
import Effect.Aff (launchAff_)
@@ -18,7 +17,8 @@ main :: Effect Unit
18
17
main = do
19
goldenJson <- GoldenJson.tests
20
either (fail <<< show) (launchAff_)
21
- ( map (const unit) <$> runSpecT defaultConfig [ consoleReporter ] do
22
- describe "LambdaBuffers Prelude runtime tests" do
23
- goldenJson
+ ( map (const unit)
+ <$> runSpecT defaultConfig [ consoleReporter ] do
+ describe "LambdaBuffers Prelude runtime tests" do
+ goldenJson
24
)
0 commit comments