Upgrade part8 and part9 to latest elm-test

This commit is contained in:
Richard Feldman
2016-08-19 04:55:44 -07:00
parent 43eede09ed
commit b5e7011d2b
6 changed files with 130 additions and 11 deletions

18
part9/tests/Main.elm Normal file
View File

@@ -0,0 +1,18 @@
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