benansell/lobo-elm-test-extra

elm-test extensions for lobo with focus & skip


Keywords
elm, elm-test, lobo
License
BSD-3-Clause
Install
elm-package install benansell/lobo-elm-test-extra 2.0.0

Documentation

lobo-elm-test-extra Build status Build Status

Additions to elm-test for use with the lobo test runner.

skippedTest : Test
skippedTest =
    skip "ignore test" <|
        test "skippedTest" <|
            \() ->
                Expect.fail "Never runs"

Migration from elm-test

To use this package you will need to use lobo with the "elm-test-extra" framework, and replace:

import Test

with

import ElmTest.Extra

Further information on using lobo can be found here

The following elm-test functions are not available in elm-test-extra:

  • concat -> instead use describe

Note: the use of skip in lobo requires a reason to be specified