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