mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-11-29 09:32:57 +03:00
13 lines
216 B
Elm
13 lines
216 B
Elm
|
module Example exposing (..)
|
||
|
|
||
|
import Expect exposing (Expectation)
|
||
|
import Test exposing (..)
|
||
|
|
||
|
|
||
|
suite : Test
|
||
|
suite =
|
||
|
test "Directory.includes" <|
|
||
|
\() ->
|
||
|
456
|
||
|
|> Expect.equal 456
|