1
0
Fork 0
tooty/tests/Main.elm

22 lines
468 B
Elm
Raw Normal View History

2017-04-25 14:27:15 +00:00
port module Main exposing (..)
2017-04-27 14:34:27 +00:00
import MastodonTest.HelperTest
import MastodonTest.HttpTest
import UpdateTest.TimelineTest
import Test
2017-04-25 14:27:15 +00:00
import Test.Runner.Node exposing (run, TestProgram)
import Json.Encode exposing (Value)
main : TestProgram
main =
run emit <|
Test.concat
[ MastodonTest.HelperTest.all
, MastodonTest.HttpTest.all
, UpdateTest.TimelineTest.all
]
2017-04-25 14:27:15 +00:00
port emit : ( String, Value ) -> Cmd msg