tooty/tests/Main.elm

14 lines
263 B
Elm
Raw Normal View History

2017-04-25 16:27:15 +02:00
port module Main exposing (..)
2017-04-27 16:34:27 +02:00
import MastodonTest.HelperTest
2017-04-25 16:27:15 +02:00
import Test.Runner.Node exposing (run, TestProgram)
import Json.Encode exposing (Value)
main : TestProgram
main =
2017-04-27 16:34:27 +02:00
run emit MastodonTest.HelperTest.all
2017-04-25 16:27:15 +02:00
port emit : ( String, Value ) -> Cmd msg