Test views by writing expectations about Html
values.
import Html
import Html.Attributes exposing (class)
import Test exposing (test)
import Test.Html.Query as Query
import Test.Html.Selector exposing (text, tag)
test "Button has the expected text" <|
\() ->
Html.div [ class "container" ]
[ Html.button [] [ Html.text "I'm a button!" ] ]
|> Query.fromHtml
|> Query.find [ tag "button" ]
|> Query.has [ text "I'm a button!" ]
These tests are designed to be written in a pipeline like this:
- Call
Query.fromHtml
on yourHtml
to begin querying it. - Use queries like
Query.find
,Query.findAll
, andQuery.children
to find the elements to test. - Create expectations using things like
Query.has
andQuery.count
.
These are normal expectations, so you can use them with fuzz
just as easily as with test
!
Queries come in two flavors: Single
and Multiple
.
This is because some queries are expected to return a single result, whereas others may return multiple results.
If a Single
query finds exactly one result, it will succeed and continue with
any further querying or expectations. If it finds zero results, or more than one,
the test will fail.
Since other querying and expectation functions are written in terms of Single
and Multiple
, the compiler can help make sure queries are connected as
expected. For example, count
accepts a Multiple
, because counting a single element does not make much sense!
If you have a Multiple
and want to use an expectation that works on a Single
,
such as Query.has
, you can use Query.each
to run the expectation on each of the elements in the Multiple
.
Version | Notes |
---|---|
1.1.0 | Support for events by @rogeriochaves |
1.0.0 | Initial release |