mirror of
https://github.com/prometheus/alertmanager
synced 2025-01-09 15:29:43 +00:00
9ec25d84c5
Adding two basic (fuzz-) tests for Utils.Filter.parseMatcher. Including tests in Travis runs. Adding make target "test" and "dev-server".
14 lines
227 B
Elm
14 lines
227 B
Elm
port module Main exposing (..)
|
|
|
|
import Tests
|
|
import Test.Runner.Node exposing (run, TestProgram)
|
|
import Json.Encode exposing (Value)
|
|
|
|
|
|
main : TestProgram
|
|
main =
|
|
run emit Tests.all
|
|
|
|
|
|
port emit : ( String, Value ) -> Cmd msg
|