Files
elm-0.19-workshop/part9/tests/Main.elm
katbow 8c5472d344 Update dependencies in test elm-package.json
Changed type annotation to match
2017-01-17 12:46:11 +00:00

19 lines
256 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 : Runner.TestProgram
main =
Runner.run emit Tests.all
port emit : ( String, Value ) -> Cmd msg