lamassu-server/lamassu-admin-elm/tests/Main.elm
2018-10-08 21:29:06 +02:00

14 lines
263 B
Elm

port module Main exposing (..)
import AccountTypesTests
import ConfigTypesTests
import Test.Runner.Node exposing (run)
import Json.Encode exposing (Value)
main : Program Never
main =
run emit ConfigTypesTests.all
port emit : ( String, Value ) -> Cmd msg