alertmanager/ui/app/tests/Tests.elm
stuart nelson 91e802c4f3 Extract Alert Filter Bar (#755)
* Extract Alert Filter Bar

* Add FilterBar to silenceList page

* Prevent empty key= in query string
2017-05-08 10:42:42 +02:00

19 lines
209 B
Elm

module Tests exposing (..)
import Test exposing (..)
import Filter
all : Test
all =
describe "Tests"
[ utils
]
utils : Test
utils =
describe "Utils"
[ Filter.all
]