Skip to content

Commit

Permalink
update elm-test
Browse files Browse the repository at this point in the history
3.0.1 is required to fix deadfoxygrandpa/elm-test#32
  • Loading branch information
igrep committed Nov 24, 2015
1 parent 33488c7 commit 12e6897
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion elm/elm-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"evancz/elm-html": "4.0.2 <= v < 5.0.0",
"evancz/elm-http": "3.0.0 <= v < 4.0.0",
"evancz/start-app": "2.0.2 <= v < 3.0.0",
"deadfoxygrandpa/elm-test": "2.0.0 <= v < 3.0.0"
"deadfoxygrandpa/elm-test": "3.0.1 <= v < 4.0.0"
},
"elm-version": "0.16.0 <= v < 0.17.0"
}
13 changes: 9 additions & 4 deletions elm/test/Test.elm
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
import Graphics.Element exposing (Element)

import ElmTest.Test exposing (test, Test, suite)
import ElmTest.Assertion exposing (assert, assertEqual)
import ElmTest.Runner.Element exposing (runDisplay)
import ElmTest exposing
( test
, Test
, suite
, assert
, assertEqual
, elementRunner
)

import IgrepCashbook.FileList as FileList

import Dict


main : Element
main = runDisplay <| suite "IgrepCashbook"
main = elementRunner <| suite "IgrepCashbook"
[ suite ".FileList" <|
[ suite ".extractFromHtml" <|
[ test "parses html returned by wai-app-static server" <|
Expand Down

0 comments on commit 12e6897

Please sign in to comment.