File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1515 "purescript-prelude" : " ^4.0.0" ,
1616 "purescript-effect" : " ^2.0.0" ,
1717 "purescript-arrays" : " ^5.0.0" ,
18- "purescript-spec" : " ^ 3.1.0" ,
18+ "purescript-spec" : " #>= 3.1.0 <5.0 .0" ,
1919 "purescript-node-fs" : " ^5.0.0"
2020 }
2121}
Original file line number Diff line number Diff line change @@ -3,9 +3,10 @@ module Test.Main where
33import Prelude
44
55import Effect (Effect )
6+ import Effect.Aff (launchAff_ )
67import Test.Spec.Discovery (discover )
78import Test.Spec.Reporter.Console (consoleReporter )
8- import Test.Spec.Runner (run )
9+ import Test.Spec.Runner (runSpec )
910
1011main :: Effect Unit
11- main = discover " Test\\ .Spec\\ .Discovery.*Spec" >>= run [consoleReporter]
12+ main = discover " Test\\ .Spec\\ .Discovery.*Spec" >>= runSpec [consoleReporter] >>> launchAff_
You can’t perform that action at this time.
0 commit comments