Move tests around

This commit is contained in:
Richard Feldman
2016-08-19 04:54:08 -07:00
parent 2b5049f438
commit 43eede09ed
6 changed files with 9 additions and 16 deletions

18
part8/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