mirror of
https://github.com/jfmengels/elm-review.git
synced 2024-12-18 07:01:48 +03:00
22 lines
381 B
Elm
22 lines
381 B
Elm
port module Tests exposing (..)
|
|
|
|
import Test exposing (describe, Test)
|
|
import Test.Runner.Node exposing (run)
|
|
import Json.Encode exposing (Value)
|
|
import FindNoAnnotatedFunctionTest
|
|
|
|
|
|
main : Test.Runner.Node.TestProgram
|
|
main =
|
|
run emit all
|
|
|
|
|
|
port emit : ( String, Value ) -> Cmd msg
|
|
|
|
|
|
all : Test
|
|
all =
|
|
describe "Visitors"
|
|
[ FindNoAnnotatedFunctionTest.all
|
|
]
|