benansell/lobo-elm-test-extra - version: 3.0.0

for more information visit the package's GitHub page

Package contains the following modules:

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