Files
elm-0.19-workshop/part8/tests/Main.elm
Richard Feldman 43eede09ed Move tests around
2016-08-19 04:54:08 -07:00

19 lines
251 B
Elm

port module Main exposing (..)
import Tests
import Test.Runner.Node as Runner
import Json.Decode exposing (Value)
-- To run this:
--
-- elm-test
main : Program Value
main =
Runner.run emit Tests.all
port emit : ( String, Value ) -> Cmd msg