Main.purs 267 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 module Test.Main where import Prelude import Effect (Effect) import Test.Spec.Discovery (discover) import Test.Spec.Reporter.Console (consoleReporter) import Test.Spec.Runner (run) main :: Effect Unit main = discover "Gargantext\\..*Spec" >>= run [consoleReporter]